s4:password_hash: really catch the clearTextPasswordAttr case...
[samba.git] / source4 / dsdb / samdb / ldb_modules / password_hash.c
index cef1bf79f74b58f9345f89653646f93110978f02..1707baba585bbb0269aa1a6575f5f77715101466 100644 (file)
@@ -1641,7 +1641,7 @@ static int password_hash_add(struct ldb_module *module, struct ldb_request *req)
        ntAttr = ldb_msg_find_element(req->op.mod.message, "unicodePwd");
        lmAttr = ldb_msg_find_element(req->op.mod.message, "dBCSPwd");
 
-       if ((!sambaAttr) && (!ntAttr) && (!lmAttr)) {
+       if ((!sambaAttr) && (!clearTextPasswordAttr) && (!ntAttr) && (!lmAttr)) {
                return ldb_next_request(module, req);
        }