1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

dosmode: Change message of result to informational

Logging the returned mode bits should be only "informational" (level 5).

Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Thu Jul  9 15:36:30 CEST 2015 on sn-devel-104
This commit is contained in:
Christof Schmitt 2015-07-08 14:40:25 -07:00 committed by Jeremy Allison
parent a7fba97f98
commit 540899a2d9

View File

@ -192,8 +192,9 @@ mode_t unix_mode(connection_struct *conn, int dosmode,
}
}
DEBUG(3,("unix_mode(%s) returning 0%o\n", smb_fname_str_dbg(smb_fname),
(int)result));
DBG_INFO("unix_mode(%s) returning 0%o\n",
smb_fname_str_dbg(smb_fname), (int)result);
return(result);
}