Browse Source

fix non behavior

with this `!' lines in /etc/hostname.* run even without certain lines
(like a comment) preceeding it.
OPENBSD_2_7
todd 24 years ago
parent
commit
9ba3eae32a
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/etc/netstart

+ 3
- 3
src/etc/netstart View File

@ -1,6 +1,6 @@
#!/bin/sh - #!/bin/sh -
# #
# $OpenBSD: netstart,v 1.63 2000/01/10 02:04:07 todd Exp $
# $OpenBSD: netstart,v 1.64 2000/03/10 13:21:51 todd Exp $
# Returns true if $1 contains only alphanumerics # Returns true if $1 contains only alphanumerics
isalphanumeric() { isalphanumeric() {
@ -124,11 +124,11 @@ for hn in /etc/hostname.*; do
ext2= ext2=
fi fi
cmd="ifconfig $if $af $alias $name " cmd="ifconfig $if $af $alias $name "
case $dt in
case "$dt" in
dest) dest)
cmd="$cmd $dtaddr" cmd="$cmd $dtaddr"
;; ;;
[a-z]*)
[a-z!]*)
cmd2="$dt $dtaddr" cmd2="$dt $dtaddr"
;; ;;
esac esac


Loading…
Cancel
Save