summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/smbd/nttrans.c2
-rw-r--r--source3/smbd/open.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c
index 1642de0fba..aff2b47c73 100644
--- a/source3/smbd/nttrans.c
+++ b/source3/smbd/nttrans.c
@@ -1615,7 +1615,7 @@ static int call_nt_transact_ioctl(connection_struct *conn,
static BOOL logged_message = False;
if(!logged_message) {
- DEBUG(0,("call_nt_transact_ioctl: Currently not implemented.\n"));
+ DEBUG(3,("call_nt_transact_ioctl: Currently not implemented.\n"));
logged_message = True; /* Only print this once... */
}
return ERROR_DOS(ERRSRV,ERRnosupport);
diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index 4d49b2cb59..c9433e15e2 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -1164,7 +1164,7 @@ files_struct *open_directory(connection_struct *conn, char *fname, SMB_STRUCT_ST
*/
if(!got_stat) {
- DEBUG(0,("open_directory: unable to stat name = %s. Error was %s\n",
+ DEBUG(3,("open_directory: unable to stat name = %s. Error was %s\n",
fname, strerror(errno) ));
file_free(fsp);
return NULL;