summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-06-22 12:15:42 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-06-22 12:15:42 +0000
commit6b4dde0c241a4fcf2478336bc0f8d7f5649c82ee (patch)
tree13cde0185750571894acc9be2af3dc1393a97c40 /source3/smbd
parent904533dc9e1948adcd4df5f2a771d20bedb0f520 (diff)
downloadsamba-6b4dde0c241a4fcf2478336bc0f8d7f5649c82ee.tar.gz
samba-6b4dde0c241a4fcf2478336bc0f8d7f5649c82ee.tar.bz2
samba-6b4dde0c241a4fcf2478336bc0f8d7f5649c82ee.zip
Raise some debug levels.
Andrew Bartlett (This used to be commit 5c0e4ecfaf9bf7e6e799dceeb275b5db2d4142dd)
Diffstat (limited to 'source3/smbd')
-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;