summaryrefslogtreecommitdiff
path: root/source3/smbd/dosmode.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-10-26 16:36:38 +0200
committerVolker Lendecke <vlendec@samba.org>2010-10-26 15:20:01 +0000
commit126f87e6a51bf330b7cdc631804a61e29c3116f7 (patch)
tree4453350ede6f2eaea2ebaf6780e733cb61b6273e /source3/smbd/dosmode.c
parentda09021bf3da65c94cf25c8e6033d010c6780b4a (diff)
downloadsamba-126f87e6a51bf330b7cdc631804a61e29c3116f7.tar.gz
samba-126f87e6a51bf330b7cdc631804a61e29c3116f7.tar.bz2
samba-126f87e6a51bf330b7cdc631804a61e29c3116f7.zip
s3: Fix some DEBUG msgs
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Oct 26 15:20:01 UTC 2010 on sn-devel-104
Diffstat (limited to 'source3/smbd/dosmode.c')
-rw-r--r--source3/smbd/dosmode.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c
index e69a9539bc..7faeb44d2f 100644
--- a/source3/smbd/dosmode.c
+++ b/source3/smbd/dosmode.c
@@ -249,7 +249,7 @@ static bool get_ea_dos_attribute(connection_struct *conn,
#else
) {
#endif
- DEBUG(1,("get_ea_dos_attributes: Cannot get attribute "
+ DEBUG(1,("get_ea_dos_attribute: Cannot get attribute "
"from EA on file %s: Error = %s\n",
smb_fname_str_dbg(smb_fname),
strerror(errno)));
@@ -265,7 +265,7 @@ static bool get_ea_dos_attribute(connection_struct *conn,
(ndr_pull_flags_fn_t)ndr_pull_xattr_DOSATTRIB);
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
- DEBUG(1,("get_ea_dos_attributes: bad ndr decode "
+ DEBUG(1,("get_ea_dos_attribute: bad ndr decode "
"from EA on file %s: Error = %s\n",
smb_fname_str_dbg(smb_fname),
ndr_errstr(ndr_err)));
@@ -289,7 +289,7 @@ static bool get_ea_dos_attribute(connection_struct *conn,
update_stat_ex_create_time(&smb_fname->st,
create_time);
- DEBUG(10,("get_ea_dos_attributes: file %s case 1 "
+ DEBUG(10,("get_ea_dos_attribute: file %s case 1 "
"set btime %s\n",
smb_fname_str_dbg(smb_fname),
time_to_asc(convert_timespec_to_time_t(
@@ -311,7 +311,7 @@ static bool get_ea_dos_attribute(connection_struct *conn,
update_stat_ex_create_time(&smb_fname->st,
create_time);
- DEBUG(10,("get_ea_dos_attributes: file %s case 3 "
+ DEBUG(10,("get_ea_dos_attribute: file %s case 3 "
"set btime %s\n",
smb_fname_str_dbg(smb_fname),
time_to_asc(convert_timespec_to_time_t(
@@ -319,7 +319,7 @@ static bool get_ea_dos_attribute(connection_struct *conn,
}
break;
default:
- DEBUG(1,("get_ea_dos_attributes: Badly formed DOSATTRIB on "
+ DEBUG(1,("get_ea_dos_attribute: Badly formed DOSATTRIB on "
"file %s - %s\n", smb_fname_str_dbg(smb_fname),
attrstr));
return false;