summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>2003-01-03 04:35:09 +0000
committerChristopher R. Hertel <crh@samba.org>2003-01-03 04:35:09 +0000
commit47a7f0cfb5006fb41239a6cd81cce5e35fde750a (patch)
tree53fc3c23dffc63c123bf66a76fddcef98de70f85
parent43059acb95837fce3c8fdf5fc71b96c403e61939 (diff)
downloadsamba-47a7f0cfb5006fb41239a6cd81cce5e35fde750a.tar.gz
samba-47a7f0cfb5006fb41239a6cd81cce5e35fde750a.tar.bz2
samba-47a7f0cfb5006fb41239a6cd81cce5e35fde750a.zip
Fixed some simple typos, including one that would cause the wrong value
to be printed in a DEBUG() message. (This used to be commit 96e9fa5f224966531fa8f9cf18cbc4bbb2fe60ed)
-rw-r--r--source3/libsmb/smbencrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/smbencrypt.c b/source3/libsmb/smbencrypt.c
index db265c4bf7..42250fc19c 100644
--- a/source3/libsmb/smbencrypt.c
+++ b/source3/libsmb/smbencrypt.c
@@ -129,13 +129,13 @@ BOOL ntv2_owf_gen(const uchar owf[16],
user_byte_len = push_ucs2_allocate(&user, user_in);
if (user_byte_len < 0) {
- DEBUG(0, ("push_uss2_allocate() for user returned %d (probably malloc() failure)\n", user_byte_len));
+ DEBUG(0, ("push_ucs2_allocate() for user returned %d (probably malloc() failure)\n", user_byte_len));
return False;
}
domain_byte_len = push_ucs2_allocate(&domain, domain_in);
if (domain_byte_len < 0) {
- DEBUG(0, ("push_uss2_allocate() for domain returned %d (probably malloc() failure)\n", user_byte_len));
+ DEBUG(0, ("push_ucs2_allocate() for domain returned %d (probably malloc() failure)\n", domain_byte_len));
return False;
}