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 | 6f6125364866d29edc90c58ce4b30a74b253fe37 (patch) | |
tree | 7161f49791d39d3019f72503b301a60da73fbc87 /source3 | |
parent | a0512ce5ff104bd2d2d11b3e3167d214615a9fbf (diff) | |
download | samba-6f6125364866d29edc90c58ce4b30a74b253fe37.tar.gz samba-6f6125364866d29edc90c58ce4b30a74b253fe37.tar.xz samba-6f6125364866d29edc90c58ce4b30a74b253fe37.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.
(This used to be commit c391f076f29cff917fd51d58598e1ad11048e824)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nmbd/nmbd_packets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_packets.c b/source3/nmbd/nmbd_packets.c index b0ef96f694c..d7049a270ff 100644 --- a/source3/nmbd/nmbd_packets.c +++ b/source3/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++) { |