From: Uri Simchoni Date: Sun, 27 Dec 2015 05:17:58 +0000 (+0200) Subject: smbd: remove function name from a DBG_INFO in a recent commit X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=1be7e8b9d89fb061ca5707831b6a1151def89be4;p=ambi%2Fsamba.git smbd: remove function name from a DBG_INFO in a recent commit We now have embedded automatically into DBG_XXX- generated messages. Signed-off-by: Uri Simchoni Reviewed-by: Michael Adam Autobuild-User(master): Michael Adam Autobuild-Date(master): Tue Dec 29 04:18:19 CET 2015 on sn-devel-144 --- diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index 942d286914..ecc211c0a6 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;