diff options
author | cinap_lenrek <cinap_lenrek@localhost> | 2011-05-06 07:02:22 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@localhost> | 2011-05-06 07:02:22 +0000 |
commit | 67856b45077ec20116f1cb658b6686d4cdecbdfa (patch) | |
tree | 470f0579f1b20993863b5e3607aa4426bdd412df | |
parent | e4d368ccdbfb4f57fb2865104de64bede7a45793 (diff) | |
download | plan9front-67856b45077ec20116f1cb658b6686d4cdecbdfa.tar.xz |
bootargs=tcp fix
-rw-r--r-- | sys/src/9/boot/bootrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/boot/bootrc b/sys/src/9/boot/bootrc index f518774f0..f1d4c37cf 100644 --- a/sys/src/9/boot/bootrc +++ b/sys/src/9/boot/bootrc @@ -71,7 +71,7 @@ fn main{ } if not bootargs=$nobootprompt mn=`{echo $bootargs | awk -F! '{print $1}'} - ma=`{echo $bootargs | sed 's/[^!]+!//'} + ma=`{echo $bootargs | sed 's/[^!]+!?//'} for(i in `{seq 1 $#mt}){ if(~ $mt($i) m^$mn) mp=$$mt($i) |