From 678cc4403f78d36f277940add7b7b4294e13100e Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 11 Oct 2012 07:41:19 +0200 Subject: [PATCH] s3:smbd: also log the "offline" flag when debugging the dos-mode Signed-off-by: Michael Adam Signed-off-by: Jeremy Allison --- source3/smbd/dosmode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index ad04a6515be..a98ac073f43 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")); -- 2.11.4.GIT