diff options
author | Volker Lendecke <vl@samba.org> | 2008-02-05 22:17:20 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-02-05 22:22:03 +0100 |
commit | abe2fd76977d472b044f30b522aa9c114db089fc (patch) | |
tree | f809905af4a6cb50ec13220b174f9c85ec2359a7 /source3/lib | |
parent | 95eb2f2eba529fca0792b8f5dd64c929824e421b (diff) | |
download | samba-abe2fd76977d472b044f30b522aa9c114db089fc.tar.gz samba-abe2fd76977d472b044f30b522aa9c114db089fc.tar.bz2 samba-abe2fd76977d472b044f30b522aa9c114db089fc.zip |
Fix a debug message
(This used to be commit 24aa3518aef7e36fde03d58f36487cbf29c027c9)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 25d539cace..71d48d6053 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -1130,7 +1130,7 @@ NTSTATUS read_smb_length_return_keepalive(int fd, char *inbuf, DEBUG(5,("Got keepalive packet\n")); } - DEBUG(10,("got smb length of %lu\n",(unsigned long)len)); + DEBUG(10,("got smb length of %lu\n",(unsigned long)(*len))); return NT_STATUS_OK; } |