diff options
author | Steven Danneman <steven.danneman@isilon.com> | 2010-10-01 12:01:16 -0700 |
---|---|---|
committer | Steven Danneman <steven.danneman@isilon.com> | 2010-10-01 13:31:33 -0700 |
commit | 100843ac239688a3c328f834b7a9f90478e2e8f9 (patch) | |
tree | 625d8c0bbab16f31c26ad4af170ce9b188acb29c /source3 | |
parent | 455fccf86b6544cd17a2571c63a88f8aebff3f74 (diff) | |
download | samba-100843ac239688a3c328f834b7a9f90478e2e8f9.tar.gz samba-100843ac239688a3c328f834b7a9f90478e2e8f9.tar.bz2 samba-100843ac239688a3c328f834b7a9f90478e2e8f9.zip |
s3:smbd: Increase unsupported IOCTL debug message to 2
Even printing once per connection, level 0 was too spammy with
Windows clients frequently sending FSCTL_GET_OBJECT_ID which
is unsupported.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/nttrans.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 7264bcbac9..40a47fde5c 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -2349,9 +2349,11 @@ static void call_nt_transact_ioctl(connection_struct *conn, return; } default: + /* Only print this once... */ if (!logged_ioctl_message) { - logged_ioctl_message = true; /* Only print this once... */ - DEBUG(0,("call_nt_transact_ioctl(0x%x): Currently not implemented.\n", + logged_ioctl_message = true; + DEBUG(2,("call_nt_transact_ioctl(0x%x): " + "Currently not implemented.\n", function)); } } |