From ed04ec7ab8b8e73b5442bdef03d5a3c994247b4e Mon Sep 17 00:00:00 2001 From: Samba Release Account Date: Tue, 1 Jul 1997 20:50:57 +0000 Subject: Rolled back Lukes changes. Not quite ready for prime time. Jeremy (jallison@whistle.com) --- source/lib/util.c | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) (limited to 'source/lib/util.c') diff --git a/source/lib/util.c b/source/lib/util.c index 18f22ad6843..9ebfdca88ea 100644 --- a/source/lib/util.c +++ b/source/lib/util.c @@ -3427,9 +3427,9 @@ char *readdirname(void *p) } -BOOL is_vetoed_name(int snum, char *name) +BOOL is_vetoed_name(char *name) { - char *namelist = lp_veto_files(snum); + char *namelist = lp_veto_files(); char *nameptr = namelist; char *name_end; @@ -3469,8 +3469,9 @@ BOOL is_vetoed_name(int snum, char *name) return 0; } -static BOOL is_in_path(char *name, char *namelist) +BOOL is_vetoed_path(char *name) { + char *namelist = lp_veto_files(); char *nameptr = namelist; char *sub; char *name_end; @@ -3521,22 +3522,6 @@ static BOOL is_in_path(char *name, char *namelist) return 0; } -/**************************************************************************** -used to make files hidden, but still accessible -****************************************************************************/ -BOOL is_hidden_path(int cnum, char *path) -{ - return is_in_path(path, lp_hide_files(cnum)); -} - -/**************************************************************************** -used to make files _completely_ inaccessible -****************************************************************************/ -BOOL is_vetoed_path(int cnum, char *path) -{ - return is_in_path(path, lp_veto_files(cnum)); -} - /**************************************************************************** routine to do file locking ****************************************************************************/ -- cgit