diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-27 13:19:30 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-29 11:22:04 +0100 |
commit | 36e8d8ed455ab712023ddc199beaeb01e4d40ff2 (patch) | |
tree | cd50b7182b58ba91e6f553f655db0ac3603efabd /source3/lib | |
parent | 33601b8632edf65af4d4ab787c5615ab5c6af6fb (diff) | |
download | samba-36e8d8ed455ab712023ddc199beaeb01e4d40ff2.tar.gz samba-36e8d8ed455ab712023ddc199beaeb01e4d40ff2.tar.bz2 samba-36e8d8ed455ab712023ddc199beaeb01e4d40ff2.zip |
s3: Move directory_exist_stat to testparm.c, it only looks at the mode
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index b074a1bd6c..8525d9c919 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -554,27 +554,6 @@ bool socket_exist(const char *fname) } /******************************************************************* - Check if a directory exists. -********************************************************************/ - -bool directory_exist_stat(char *dname,SMB_STRUCT_STAT *st) -{ - SMB_STRUCT_STAT st2; - bool ret; - - if (!st) - st = &st2; - - if (sys_stat(dname, st, lp_fake_dir_create_times()) != 0) - return(False); - - ret = S_ISDIR(st->st_ex_mode); - if(!ret) - errno = ENOTDIR; - return ret; -} - -/******************************************************************* Returns the size in bytes of the named given the stat struct. ********************************************************************/ |