diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-11-17 23:49:45 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-11-17 23:49:45 +0000 |
commit | a226da7d5b4aa11dc08784a3629af8ec78d9da63 (patch) | |
tree | 7d10427f542313f5103800a1df0fcefb07f0d358 | |
parent | a9195c0c7bd80a069604926f0fbaf7c997ee84dd (diff) |
Notes
-rw-r--r-- | release/sysinstall/menus.c | 6 | ||||
-rw-r--r-- | release/sysinstall/sysinstall.h | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/release/sysinstall/menus.c b/release/sysinstall/menus.c index 7f1f68f589ff..5c601d241c6c 100644 --- a/release/sysinstall/menus.c +++ b/release/sysinstall/menus.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: menus.c,v 1.42.2.44 1995/11/08 07:09:33 jkh Exp $ + * $Id: menus.c,v 1.42.2.45 1995/11/09 02:32:01 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -747,7 +747,7 @@ aspects of your system's network configuration.", { "Gateway", "This machine will route packets between interfaces", DMENU_SET_VARIABLE, "gateway=YES", 0, 0, 0 }, { "Gated", "This machine wants to run gated", - DMENU_SET_VARIABLE, "gated=YES", 0, 0, 0 }, + DMENU_CALL, configGated, 0, 0, 0 }, { "Ntpdate", "Select a clock-syncronization server", DMENU_SUBMENU, &MenuNTP, (int)"ntpdate", 0, dmenuVarCheck }, { "Routed", "Set flags for routed (default: -q)", @@ -761,7 +761,7 @@ aspects of your system's network configuration.", { "Samba", "Install Samba for LanManager (NETBUI) access.", DMENU_CALL, configSamba, 0, 0, 0 }, { "PCNFSD", "Run authentication server for clients with PC-NFS.", - DMENU_SET_VARIABLE, "pcnfsd=YES", 0, 0, 0 }, + DMENU_CALL, configPCNFSD, 0, 0, 0 }, { NULL } }, }; diff --git a/release/sysinstall/sysinstall.h b/release/sysinstall/sysinstall.h index 504875f37676..b2f57ef385b2 100644 --- a/release/sysinstall/sysinstall.h +++ b/release/sysinstall/sysinstall.h @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated to essentially a complete rewrite. * - * $Id: sysinstall.h,v 1.42.2.45 1995/11/06 08:28:12 jkh Exp $ + * $Id: sysinstall.h,v 1.42.2.46 1995/11/09 02:32:03 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -489,6 +489,7 @@ extern Boolean rootExtract(void); /* installFinal.c */ extern int configGated(char *unused); extern int configSamba(char *unused); +extern int configPCNFSD(char *unused); extern int configNFSServer(char *unused); /* label.c */ |