summaryrefslogtreecommitdiffstats
path: root/source/lib/crc32.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-10-21 01:35:01 +0000
committerLuke Leighton <lkcl@samba.org>1998-10-21 01:35:01 +0000
commitc101113ec20ed0ba633e78e4ee45596cdccaf1b5 (patch)
tree4f0401ec7349c7cd4b7b569d683663584b6abed1 /source/lib/crc32.c
parenta1c4d8351b9171416693e6d7a9045bdce9217edb (diff)
downloadsamba-c101113ec20ed0ba633e78e4ee45596cdccaf1b5.tar.gz
samba-c101113ec20ed0ba633e78e4ee45596cdccaf1b5.tar.xz
samba-c101113ec20ed0ba633e78e4ee45596cdccaf1b5.zip
fixing smbd encrypted rpcs (data lens, alloc hints, sequence nums argh).
put unicode strings after SAMLOGON query regardless of whether it's an NT mailslot or a non-NT mailslot, after having observed this behaviour out of NT machines.
Diffstat (limited to 'source/lib/crc32.c')
-rw-r--r--source/lib/crc32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/crc32.c b/source/lib/crc32.c
index 8e687d30e69..9da5b4bfe14 100644
--- a/source/lib/crc32.c
+++ b/source/lib/crc32.c
@@ -65,7 +65,7 @@ uint32 crc32_calc_buffer( uint32 count, char *buffer)
crc = (crc>>8) ^ CRCTable[(buffer[i] ^ crc) & 0xff];
}
crc^=0xffffffff;
- DEBUG(10,("crc_32_calc_buffer: %x\n", crc));
+ DEBUG(10,("crc32_calc_buffer: %x\n", crc));
dump_data(100, buffer, count);
return crc;
}