diff options
author | Christopher R. Hertel <crh@samba.org> | 1998-10-22 22:51:45 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1998-10-22 22:51:45 +0000 |
commit | c391f076f29cff917fd51d58598e1ad11048e824 (patch) | |
tree | 4d77e326e9e9cd9b79125a1a7efbe8d178269dc4 /source | |
parent | b4ae65e2d0582274d67d02ea190f6d3d83b48594 (diff) | |
download | samba-c391f076f29cff917fd51d58598e1ad11048e824.tar.gz samba-c391f076f29cff917fd51d58598e1ad11048e824.tar.xz samba-c391f076f29cff917fd51d58598e1ad11048e824.zip |
Okay, this is really silly but removing one space from one debug statement
meant that one hex dump would fit within 80 characters in lynx after HTML
conversion.
Diffstat (limited to 'source')
-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 b0ef96f694c..d7049a270ff 100644 --- a/source/nmbd/nmbd_packets.c +++ b/source/nmbd/nmbd_packets.c @@ -114,7 +114,7 @@ static void debug_browse_data(char *outbuf, int len) DEBUGADD( 4, ( "%c", x ) ); } - DEBUGADD( 4, ( "%*s hex ", 16-j, "" ) ); + DEBUGADD( 4, ( "%*s hex", 16-j, "" ) ); for (j = 0; j < 16; j++) { |