summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-02-24 15:45:37 +0100
committerVolker Lendecke <vl@samba.org>2012-02-24 16:34:34 +0100
commit28901acd27bb7b1bfc19ad1a7e0167d55124682c (patch)
treee851eed51955febb7e699d0ab925cd211a96ef20 /source3
parenta1849da7c2375c68f637fddc4c54835d9ece9378 (diff)
downloadsamba-28901acd27bb7b1bfc19ad1a7e0167d55124682c.tar.gz
samba-28901acd27bb7b1bfc19ad1a7e0167d55124682c.tar.bz2
samba-28901acd27bb7b1bfc19ad1a7e0167d55124682c.zip
s3: Fix a DEBUG msg
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c
index 3cb44c4137..06f3e06be1 100644
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -1826,7 +1826,7 @@ static bool smb_splice_chain(uint8_t **poutbuf, uint8_t smb_command,
new_size += bytes_padding + num_bytes;
if ((smb_command != SMBwriteX) && (new_size > 0xffff)) {
- DEBUG(1, ("splice_chain: %u bytes won't fit\n",
+ DEBUG(1, ("smb_splice_chain: %u bytes won't fit\n",
(unsigned)new_size));
return false;
}