diff options
author | Michael Adam <obnox@samba.org> | 2012-10-11 07:41:19 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-10-17 12:56:32 +0200 |
commit | 678cc4403f78d36f277940add7b7b4294e13100e (patch) | |
tree | 509557ce8ccf7ca64753642dc27af59d13e82f9b /source3 | |
parent | d09ac9636af6a31098156ca65ab62e11ce3a5d15 (diff) | |
download | samba-678cc4403f78d36f277940add7b7b4294e13100e.tar.gz samba-678cc4403f78d36f277940add7b7b4294e13100e.tar.bz2 samba-678cc4403f78d36f277940add7b7b4294e13100e.zip |
s3:smbd: also log the "offline" flag when debugging the dos-mode
Signed-off-by: Michael Adam <obnox@samba.org>
Signed-off-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/dosmode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index ad04a6515b..a98ac073f4 100644 --- a/source3/smbd/dosmode.c +++ b/source3/smbd/dosmode.c @@ -684,6 +684,7 @@ uint32 dos_mode(connection_struct *conn, struct smb_filename *smb_fname) if (result & FILE_ATTRIBUTE_DIRECTORY ) DEBUG(8, ("d")); if (result & FILE_ATTRIBUTE_ARCHIVE ) DEBUG(8, ("a")); if (result & FILE_ATTRIBUTE_SPARSE ) DEBUG(8, ("[sparse]")); + if (result & FILE_ATTRIBUTE_OFFLINE ) DEBUG(8, ("[offline]")); DEBUG(8,("\n")); |