summaryrefslogtreecommitdiffstats
path: root/source/libsmb
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-10-02 14:09:22 +0000
committerAndrew Tridgell <tridge@samba.org>1996-10-02 14:09:22 +0000
commit20b6203dac4bbb43e4e7bea0b214496d76d679d9 (patch)
tree173087b470d3f84f26cc57d5b6e067fda3152d4c /source/libsmb
parentb6c1c60d72e1625ca172b8f8eb07078413611468 (diff)
downloadsamba-20b6203dac4bbb43e4e7bea0b214496d76d679d9.tar.gz
samba-20b6203dac4bbb43e4e7bea0b214496d76d679d9.tar.xz
samba-20b6203dac4bbb43e4e7bea0b214496d76d679d9.zip
- a huge pile of changes from Luke which implement the browse.conf
stuff and also fix a pile of nmbd bugs. Unfortunately I found it very hard to disentangle the new features from the bug fixes so I am putting in the new code. I hope this is the last big pile of changes to the 1.9.16 series!
Diffstat (limited to 'source/libsmb')
-rw-r--r--source/libsmb/nmblib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libsmb/nmblib.c b/source/libsmb/nmblib.c
index 4113b34cab4..ef5c9da434e 100644
--- a/source/libsmb/nmblib.c
+++ b/source/libsmb/nmblib.c
@@ -65,7 +65,7 @@ static void debug_nmb_res_rec(struct res_rec *res, char *hdr)
for (j = 0; j < 16; j++)
{
if (i+j >= res->rdlength) break;
- DEBUG(4, ("%02X", (unsigned char)res->rdata[i+j]));
+ DEBUG(4, ("%02x", (unsigned char)res->rdata[i+j]));
}
DEBUG(4, ("\n"));