summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUri Simchoni <uri@samba.org>2015-12-27 07:17:58 +0200
committerMichael Adam <obnox@samba.org>2015-12-29 04:18:19 +0100
commit1be7e8b9d89fb061ca5707831b6a1151def89be4 (patch)
tree5daf882b4a5b64849f7c11c1bfd2104ca42f762e
parentd4c2395e6428312854b8570064bddab3a7f188ff (diff)
downloadsamba-1be7e8b9d89fb061ca5707831b6a1151def89be4.tar.gz
smbd: remove function name from a DBG_INFO in a recent commit
We now have <function_name:> embedded automatically into DBG_XXX- generated messages. Signed-off-by: Uri Simchoni <uri@samba.org> Reviewed-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Tue Dec 29 04:18:19 CET 2015 on sn-devel-144
-rw-r--r--source3/smbd/dosmode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c
index 942d2869148..ecc211c0a62 100644
--- a/source3/smbd/dosmode.c
+++ b/source3/smbd/dosmode.c
@@ -279,7 +279,7 @@ static bool get_ea_dos_attribute(connection_struct *conn,
SAMBA_XATTR_DOS_ATTRIB, attrstr,
sizeof(attrstr));
if (sizeret == -1) {
- DBG_INFO("get_ea_dos_attribute: Cannot get attribute "
+ DBG_INFO("Cannot get attribute "
"from EA on file %s: Error = %s\n",
smb_fname_str_dbg(smb_fname), strerror(errno));
return False;
@@ -413,7 +413,7 @@ static bool set_ea_dos_attribute(connection_struct *conn,
files_struct *fsp = NULL;
if((errno != EPERM) && (errno != EACCES)) {
- DBG_INFO("set_ea_dos_attributes: Cannot set "
+ DBG_INFO("Cannot set "
"attribute EA on file %s: Error = %s\n",
smb_fname_str_dbg(smb_fname), strerror(errno));
return false;