From f7be3a706ebb6aea5ae76a6bf6ffd07b668a926d Mon Sep 17 00:00:00 2001 From: Murray Stokely Date: Mon, 10 Dec 2001 10:34:47 +0000 Subject: [PATCH] Provide a more specific help line for PLIP installs, reminding the user that they must provide the peer's IP address in the 'extra options to ifconfig' box. PR: misc/21273 --- usr.sbin/sysinstall/tcpip.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c index 0ca7e79e4bf5..ef862d4f6d83 100644 --- a/usr.sbin/sysinstall/tcpip.c +++ b/usr.sbin/sysinstall/tcpip.c @@ -467,6 +467,11 @@ tcpOpenDialog(Device *devp) /* Now do all the screen I/O */ dialog_clear_norefresh(); + /* Modify the help line for PLIP config */ + if (!strncmp(devp->name, "lp", 2)) + layout[LAYOUT_EXTRAS].help = + "For PLIP configuration, you must enter the peer's IP address here."; + /* We need a curses window */ tmp = " Network Configuration "; if (ipv6addr[0])