diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-05-02 00:03:24 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-05-02 00:03:24 +0200 |
commit | cedf916289e96e653160cdfc4c50a3760df4e44b (patch) | |
tree | 641f278a4e081279f24d07cef1fc68d151ffddd4 | |
parent | 3ffbe35a2030822e1877c17c9da4f12db4176cf7 (diff) | |
download | plan9front-cedf916289e96e653160cdfc4c50a3760df4e44b.tar.xz |
termrc: fix mistake
-rwxr-xr-x | rc/bin/cpurc | 2 | ||||
-rwxr-xr-x | rc/bin/termrc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rc/bin/cpurc b/rc/bin/cpurc index 31caf33a2..404f494ff 100755 --- a/rc/bin/cpurc +++ b/rc/bin/cpurc @@ -64,7 +64,7 @@ if(test -r /net/ipselftab){ case $addrs # try /lib/ndb first, then do dhcp ip/ipconfig -N ether $ether >[2]/dev/null \ - || ip/ipconfig ether $ether -h $sysname + || ip/ipconfig -h $sysname ether $ether } } } diff --git a/rc/bin/termrc b/rc/bin/termrc index 092137564..f160915e6 100755 --- a/rc/bin/termrc +++ b/rc/bin/termrc @@ -65,7 +65,7 @@ if(test -r /net/ipselftab){ case $addrs # try /lib/ndb first, then do dhcp ip/ipconfig -N ether $ether >[2]/dev/null \ - || ip/ipconfig ether $ether -h $sysname + || ip/ipconfig -h $sysname ether $ether } } } |