1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Minor change.

The debug_browse_data() function does a hex dump of a browser packet.  The
last line is often not a full 16 bytes, which would miss-align the hex
output.  I've added the padding needed to align the hex output.

Chris -)-----
(This used to be commit 9f9b30abab)
This commit is contained in:
Christopher R. Hertel 1998-10-22 18:07:39 +00:00
parent 1c753388d3
commit 034a12fdcb

View File

@ -114,7 +114,7 @@ static void debug_browse_data(char *outbuf, int len)
DEBUGADD( 4, ( "%c", x ) );
}
DEBUGADD( 4, ( " hex ") );
DEBUGADD( 4, ( "%*s hex ", 16-j, "" ) );
for (j = 0; j < 16; j++)
{