diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2011-02-09 17:22:07 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2011-02-09 17:22:07 +0000 |
commit | a800ca526a3abf2f653944c9b6b7b204ce98141f (patch) | |
tree | 8dfa444c01ffdc89272a299a410b06720689813a /etc/netstart | |
parent | 2a2d40a548b7e6abfb191f4bac529db1a058e593 (diff) |
fix an unbalanced parenthesis in a comment; while here, split the comment
in a better place to make it more readable.
ok jmc@ and miod@
Diffstat (limited to 'etc/netstart')
-rw-r--r-- | etc/netstart | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/netstart b/etc/netstart index 5cc06c289a6..96fbe8dc9ed 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.130 2010/06/16 23:45:57 todd Exp $ +# $OpenBSD: netstart,v 1.131 2011/02/09 17:22:06 sobrado Exp $ # Strip comments (and leading/trailing whitespace if IFS is set) # from a file and spew to stdout @@ -201,8 +201,8 @@ if [ -f /etc/defaultdomain ]; then domainname `stripcom /etc/defaultdomain` fi -# Set the address for the loopback interface. Bringing the -# interface up, automatically invokes the IPv6 address ::1) +# Set the address for the loopback interface. Bringing the interface up, +# automatically invokes the IPv6 address ::1. ifconfig lo0 inet 127.0.0.1/8 if ifconfig lo0 inet6 >/dev/null 2>&1; then |