diff options
author | jkh <jkh@FreeBSD.org> | 1998-11-15 09:06:20 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-11-15 09:06:20 +0000 |
commit | ffd97e5342d926be2f35b764575b61c28801658c (patch) | |
tree | f6d951a8fdaddd587487ae7d5a84ea7702875b0a /usr.sbin/sysinstall/tcpip.c | |
parent | c0977927244cf33b27cc7a36fa0db9652260b50f (diff) | |
download | FreeBSD-src-ffd97e5342d926be2f35b764575b61c28801658c.zip FreeBSD-src-ffd97e5342d926be2f35b764575b61c28801658c.tar.gz |
o Break fixups into binary fixups and XFree86 based fixups.
o Move fixups into extraction routine so all consumers don't have to duplicate
the right behavior.
o Make some things more orthogonal (just for asthetics sake)
o Add option to go back and do it again if XF86Setup fails (possibly with
a different setup - this one has always annoyed me).
Diffstat (limited to 'usr.sbin/sysinstall/tcpip.c')
-rw-r--r-- | usr.sbin/sysinstall/tcpip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c index 5a862f2..7ef6358 100644 --- a/usr.sbin/sysinstall/tcpip.c +++ b/usr.sbin/sysinstall/tcpip.c @@ -1,5 +1,5 @@ /* - * $Id: tcpip.c,v 1.72 1997/09/17 16:18:22 pst Exp $ + * $Id: tcpip.c,v 1.73 1998/08/31 09:02:03 jkh Exp $ * * Copyright (c) 1995 * Gary J Palmer. All rights reserved. @@ -311,7 +311,7 @@ netconfig: } if (ipaddr[0]) variable_set2(VAR_IPADDR, ipaddr); - configResolv(); /* XXX this will do it on the MFS copy XXX */ + configResolv(NULL); /* XXX this will do it on the MFS copy XXX */ ret = DITEM_SUCCESS; } else |