From: Kurt Zeilenga Date: Sun, 1 Jun 2003 23:32:47 +0000 (+0000) Subject: ITS#2562: add missing arg to hash_lanman X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~947 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=15fa161b8f5b765c8568a865753629886d0e314b;p=openldap ITS#2562: add missing arg to hash_lanman --- diff --git a/libraries/liblutil/passwd.c b/libraries/liblutil/passwd.c index f3a727d150..f150cdf37b 100644 --- a/libraries/liblutil/passwd.c +++ b/libraries/liblutil/passwd.c @@ -632,7 +632,7 @@ static int chk_lanman( { struct berval *hash; - hash = hash_lanman( scheme, cred ); + hash = hash_lanman( scheme, cred, text ); return memcmp( &hash->bv_val[scheme->bv_len], passwd->bv_val, 32); } #endif /* SLAPD_LMHASH */