diff options
author | Jeremy Allison <jra@samba.org> | 2009-11-04 16:04:41 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-11-04 16:04:41 -0800 |
commit | 170d6a3084dcf4a72d5bc7dca69b1036431e0022 (patch) | |
tree | de3b90bd7f17cdcd69b6f277d3e719bd8a182e4e | |
parent | f44d3754eeefb1a0d0282a424ae9901d72301766 (diff) | |
download | samba-170d6a3084dcf4a72d5bc7dca69b1036431e0022.tar.gz samba-170d6a3084dcf4a72d5bc7dca69b1036431e0022.tar.bz2 samba-170d6a3084dcf4a72d5bc7dca69b1036431e0022.zip |
Fix debug comment (brain wasn't working...).
Jeremy.
-rw-r--r-- | source3/smbd/dosmode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index 199a67371f..949c438f4f 100644 --- a/source3/smbd/dosmode.c +++ b/source3/smbd/dosmode.c @@ -381,7 +381,7 @@ uint32 dos_mode_msdfs(connection_struct *conn, } if (get_Protocol() <= PROTOCOL_LANMAN2) { - DEBUG(10,("dos_mode_msdfs : filtering protocol 0x%x to 0xff\n", + DEBUG(10,("dos_mode_msdfs : filtering result 0x%x\n", (unsigned int)result )); result &= 0xff; } @@ -567,7 +567,7 @@ uint32 dos_mode(connection_struct *conn, const struct smb_filename *smb_fname) } if (get_Protocol() <= PROTOCOL_LANMAN2) { - DEBUG(10,("dos_mode : filtering protocol 0x%x to 0xff\n", + DEBUG(10,("dos_mode : filtering result 0x%x\n", (unsigned int)result )); result &= 0xff; } |