diff options
author | 2010-01-13 00:15:26 +0000 | |
---|---|---|
committer | 2010-01-13 00:15:26 +0000 | |
commit | bebbab1c51e31c4a170512191cf22f279937f670 (patch) | |
tree | bbd4c930e4e1e5930099c4c47a625d8ccd112e8d | |
parent | factor m_pulldown out of the message handlers up into pfsync_input now (diff) | |
download | wireguard-openbsd-bebbab1c51e31c4a170512191cf22f279937f670.tar.xz wireguard-openbsd-bebbab1c51e31c4a170512191cf22f279937f670.zip |
match the 'use 127.0.0.1/8 instead of 127.0.0.1 for clarity' change in netstart
sure henning@
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index a079c629f24..b78230bcd4c 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.595 2010/01/03 04:25:42 krw Exp $ +# $OpenBSD: install.sub,v 1.596 2010/01/13 00:15:26 todd Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback @@ -884,7 +884,7 @@ enable_network() { # Set the address for the loopback interface. Bringing the # interface up, automatically invokes the IPv6 address ::1. - ifconfig lo0 inet 127.0.0.1 + ifconfig lo0 inet 127.0.0.1/8 # configure all of the non-loopback interfaces which we know about. # refer to hostname.if(5) |