diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-24 07:21:22 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-24 07:21:22 +0000 |
commit | 89a532aa2cd0c51bab44e2bc1b44b9a7c0012ae0 (patch) | |
tree | 3e299fcdc80bf2ae9b0db06a34d65cbf6a2b7517 | |
parent | aedd865601614fa00faacba056764d567ead1e3b (diff) | |
download | samba-89a532aa2cd0c51bab44e2bc1b44b9a7c0012ae0.tar.gz samba-89a532aa2cd0c51bab44e2bc1b44b9a7c0012ae0.tar.bz2 samba-89a532aa2cd0c51bab44e2bc1b44b9a7c0012ae0.zip |
removed lp_revalidate()
(This used to be commit fba5886a05ba64b4633d4a9f3e5cb0687fb4b20d)
-rw-r--r-- | source3/param/loadparm.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index afb3774a54..39bb63f137 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -328,7 +328,6 @@ typedef struct BOOL bAlternatePerm; BOOL bPreexecClose; BOOL bRootpreexecClose; - BOOL bRevalidate; BOOL bCaseSensitive; BOOL bCasePreserve; BOOL bShortCasePreserve; @@ -440,7 +439,6 @@ static service sDefault = False, /* bAlternatePerm */ False, /* bPreexecClose */ False, /* bRootpreexecClose */ - False, /* revalidate */ False, /* case sensitive */ True, /* case preserve */ True, /* short case preserve */ @@ -610,7 +608,6 @@ static struct parm_struct parm_table[] = {"username level", P_INTEGER, P_GLOBAL, &Globals.unamelevel, NULL, NULL, 0}, {"unix password sync", P_BOOL, P_GLOBAL, &Globals.bUnixPasswdSync, NULL, NULL, 0}, {"restrict anonymous", P_BOOL, P_GLOBAL, &Globals.bRestrictAnonymous,NULL, NULL, 0}, - {"revalidate", P_BOOL, P_LOCAL, &sDefault.bRevalidate, NULL, NULL, FLAG_GLOBAL|FLAG_SHARE}, {"use rhosts", P_BOOL, P_GLOBAL, &Globals.bUseRhosts, NULL, NULL, 0}, {"username", P_STRING, P_LOCAL, &sDefault.szUsername, NULL, NULL, FLAG_GLOBAL|FLAG_SHARE}, {"user", P_STRING, P_LOCAL, &sDefault.szUsername, NULL, NULL, 0}, @@ -1421,7 +1418,6 @@ FN_LOCAL_BOOL(lp_msdfs_root, bMSDfsRoot) FN_LOCAL_BOOL(lp_autoloaded,autoloaded) FN_LOCAL_BOOL(lp_preexec_close,bPreexecClose) FN_LOCAL_BOOL(lp_rootpreexec_close,bRootpreexecClose) -FN_LOCAL_BOOL(lp_revalidate,bRevalidate) FN_LOCAL_BOOL(lp_casesensitive,bCaseSensitive) FN_LOCAL_BOOL(lp_preservecase,bCasePreserve) FN_LOCAL_BOOL(lp_shortpreservecase,bShortCasePreserve) |