diff options
author | Jeremy Allison <jra@samba.org> | 2001-04-27 22:19:22 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-04-27 22:19:22 +0000 |
commit | b6fe3814f976e470a296ff3ee9458b285cffb480 (patch) | |
tree | e33fb435899531a8ffdf94859d4678b31aef90e2 | |
parent | f5cd30eaf570654cb841919a3359006bb562f5db (diff) | |
download | samba-b6fe3814f976e470a296ff3ee9458b285cffb480.tar.gz samba-b6fe3814f976e470a296ff3ee9458b285cffb480.tar.xz samba-b6fe3814f976e470a296ff3ee9458b285cffb480.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; |