summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2001-11-12 05:04:52 +0000
committerAndrew G. Morgan <morgan@kernel.org>2001-11-12 05:04:52 +0000
commit0c1e9795ad93a2f801db37d8e71a1b9d7d074ce8 (patch)
tree267c3643557763e37f2c53a2225160f9dc218ed1 /modules
parent568e5f97b27b1c9f8f87ed2c61a59cf15a2c0694 (diff)
Relevant BUGIDs: 460717
Purpose of commit: bugfix Commit summary: --------------- it seems there was a slight problem with md5 compatibility with respect to bigendian non-md5 hash support.
Diffstat (limited to 'modules')
-rw-r--r--modules/pam_pwdb/pam_unix_md.-c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_pwdb/pam_unix_md.-c b/modules/pam_pwdb/pam_unix_md.-c
index d9b2c51b..65476732 100644
--- a/modules/pam_pwdb/pam_unix_md.-c
+++ b/modules/pam_pwdb/pam_unix_md.-c
@@ -65,7 +65,7 @@ static char *_pam_md_compat(const char *key, const char *salt)
x = x_strdup(e); /* put e in malloc()ed memory */
_pam_overwrite(e); /* clean up */
} else {
- x = x_strdup("*");
+ x = x_strdup(""); /* called from only one place so this is safe */
}
return x; /* this must be deleted elsewhere */