summaryrefslogtreecommitdiff
path: root/source3/smbd/dir.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-04-13 02:24:07 +0000
committerJeremy Allison <jra@samba.org>2002-04-13 02:24:07 +0000
commit5c2dfd959c0facc299bca62356d1221bcea653bf (patch)
treeac65b4e92cf1305429dba14ee0145b5875ef2cf4 /source3/smbd/dir.c
parent45b291b851834f4c4dffb1a2eb8d5afd53d5823d (diff)
downloadsamba-5c2dfd959c0facc299bca62356d1221bcea653bf.tar.gz
samba-5c2dfd959c0facc299bca62356d1221bcea653bf.tar.bz2
samba-5c2dfd959c0facc299bca62356d1221bcea653bf.zip
Tidy up winbindd debug. Added Bill Moran's hide unreadable fix.
Jeremy. (This used to be commit a9895fcb30cdcb572cd254b0d370d79f95c7214d)
Diffstat (limited to 'source3/smbd/dir.c')
-rw-r--r--source3/smbd/dir.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c
index f56e0e9ef0..d224e4bdbe 100644
--- a/source3/smbd/dir.c
+++ b/source3/smbd/dir.c
@@ -680,7 +680,15 @@ static BOOL user_can_read_file(connection_struct *conn, char *name)
ZERO_STRUCT(ste);
- /* if we can't stat it does not show it */
+ /*
+ * If user is a member of the Admin group
+ * we never hide files from them.
+ */
+
+ if (conn->admin_user)
+ return True;
+
+ /* If we can't stat it does not show it */
if (vfs_stat(conn, name, &ste) != 0)
return False;