Date: Wed, 6 Dec 1995 00:05:31 -0500 From: Thomas David Rivers <ponds!rivers@dg-rtp.dg.com> To: freebsd-bugs@freefall.FreeBSD.org, jkh@freefall.FreeBSD.org, rivers@dg-rtp.dg.com Subject: Finally got a new boot floppy & verified my fixes to sysinstall. Message-ID: <199512060505.AAA11826@ponds.UUCP>
index | next in thread | raw e-mail
Well -
After a tortuous process, trying to recreate enough of building
a release to get a boot.flp made (I can send details to anyone who
wants them..) I was able to verify that my small change to sysinstall/network.c
does correct the SL/IP install problems.
Just F.Y.I. here's the context diffs again, if someone will committ
this to the 'next' release...
- Dave Rivers -
*** network.c.ori Sat Nov 4 06:09:14 1995
--- network.c Mon Dec 4 13:48:23 1995
***************
*** 115,126 ****
else
strcpy(ifname, dev->name);
! snprintf(ifconfig, 255, "%s%s", VAR_IFCONFIG, ifname);
cp = variable_get(ifconfig);
if (!cp) {
dialog_clear();
msgConfirm("The %s device is not configured. You will need to do so\n"
! "in the Networking configuration menu before proceeding.", ifname);
return FALSE;
}
msgNotify("Configuring network device %s.", ifname);
--- 115,126 ----
else
strcpy(ifname, dev->name);
! snprintf(ifconfig, 255, "%s%s", VAR_IFCONFIG, dev->name);
cp = variable_get(ifconfig);
if (!cp) {
dialog_clear();
msgConfirm("The %s device is not configured. You will need to do so\n"
! "in the Networking configuration menu before proceeding.", dev->name);
return FALSE;
}
msgNotify("Configuring network device %s.", ifname);
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199512060505.AAA11826>
