diff options
author | Jeremy Allison <jra@samba.org> | 2001-04-27 22:19:25 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-04-27 22:19:25 +0000 |
commit | d57feb2c85f973ad22098054b8d6d049869e2a69 (patch) | |
tree | c6903ba6ee28be925a6d8b4963541c7d4551c9c7 | |
parent | 6fcb600dcd23c61d1a7d2ce8c2b7b2eea2e58623 (diff) | |
download | samba-d57feb2c85f973ad22098054b8d6d049869e2a69.tar.gz samba-d57feb2c85f973ad22098054b8d6d049869e2a69.tar.xz samba-d57feb2c85f973ad22098054b8d6d049869e2a69.zip |
Mismatched format and args.
Jeremy.
-rw-r--r-- | source/nmbd/nmbd_packets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nmbd/nmbd_packets.c b/source/nmbd/nmbd_packets.c index dcdf1a9df16..00059c1775e 100644 --- a/source/nmbd/nmbd_packets.c +++ b/source/nmbd/nmbd_packets.c @@ -1269,7 +1269,7 @@ an error packet of type %x\n", return; if (buf2 + len > buf + sizeof(dgram->data)) { - DEBUG(2,("process_dgram: datagram from %s to %s IP %s for %s %d len=%d too long.\n", + DEBUG(2,("process_dgram: datagram from %s to %s IP %s for %s len=%d too long.\n", nmb_namestr(&dgram->source_name),nmb_namestr(&dgram->dest_name), inet_ntoa(p->ip), smb_buf(buf),len)); len = (buf + sizeof(dgram->data)) - buf; |