Okay, this is really silly but removing one space from one debug statement
authorChristopher R. Hertel <crh@samba.org>
Thu, 22 Oct 1998 22:51:45 +0000 (22:51 +0000)
committerChristopher R. Hertel <crh@samba.org>
Thu, 22 Oct 1998 22:51:45 +0000 (22:51 +0000)
meant that one hex dump would fit within 80 characters in lynx after HTML
conversion.
(This used to be commit c391f076f29cff917fd51d58598e1ad11048e824)

source3/nmbd/nmbd_packets.c

index b0ef96f694c06f669a4db6dd6acf77a637d218fe..d7049a270ff359a5713a131b190256ac3699e741 100644 (file)
@@ -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++)
     {