Fixed some simple typos, including one that would have resulted in a
authorChristopher R. Hertel <crh@samba.org>
Fri, 3 Jan 2003 04:32:23 +0000 (04:32 +0000)
committerChristopher R. Hertel <crh@samba.org>
Fri, 3 Jan 2003 04:32:23 +0000 (04:32 +0000)
DEBUG() message printing the wrong value.

source/libsmb/smbencrypt.c

index db265c4bf7c0f0688831ef94472ab40a46828f44..42250fc19c949f32e53465c75a31e63dd4d9edf8 100644 (file)
@@ -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;
        }