From ef811049fdfd0f5360679351f1e7845c915caee9 Mon Sep 17 00:00:00 2001 From: jkh Date: Mon, 27 Sep 1999 21:48:28 +0000 Subject: Oh bollocks, I really screwed up the "auto" check here. Time to crack the K&R; I must have forgotten the C language. :) Embarrassingly noticed by: Howard Gutch --- usr.sbin/sysinstall/tcpip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/sysinstall/tcpip.c') diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c index 77cc98a..d0a77ac 100644 --- a/usr.sbin/sysinstall/tcpip.c +++ b/usr.sbin/sysinstall/tcpip.c @@ -391,7 +391,7 @@ netconfig: sprintf(temp, "inet %s %s netmask %s", ipaddr, extras, netmask); variable_set2(ifn, temp, 1); ifaces = variable_get(VAR_INTERFACES); - if (!ifaces || !strcmp(ifaces, "auto")) + if (!ifaces || (ifaces && !strcmp(ifaces, "auto"))) variable_set2(VAR_INTERFACES, ifaces = "lo0", 1); /* Only add it if it's not there already */ if (!strstr(ifaces, devp->name)) { -- cgit v1.1