summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>2003-01-03 04:32:23 +0000
committerChristopher R. Hertel <crh@samba.org>2003-01-03 04:32:23 +0000
commitfe0382f186afb212c8f39d73b4d7e28b0adb1a63 (patch)
tree30dc9a351d6fe0e8b83604c0b8ef545fbb2799d6 /source3/libsmb
parent1afa539299c0902e869a9cb160783a7af6032f1e (diff)
downloadsamba-fe0382f186afb212c8f39d73b4d7e28b0adb1a63.tar.gz
samba-fe0382f186afb212c8f39d73b4d7e28b0adb1a63.tar.bz2
samba-fe0382f186afb212c8f39d73b4d7e28b0adb1a63.zip
Fixed some simple typos, including one that would have resulted in a
DEBUG() message printing the wrong value. (This used to be commit 42a4e5b851aa7c9fd9dca5a6f8f42e5d91246c76)
Diffstat (limited to 'source3/libsmb')
-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;
}