Purpose of commit: bugfix
Commit summary:
---------------
it seems there was a slight problem with md5 compatibility with
respect to bigendian non-md5 hash support.
0.76: please submit patches for this section with actual code/doc
patches!
+* pam_pwdb: Solar Designer pointed out that there was a problem with
+ the compatibility support for md5 password hashing. (Bug 460717 -
+ agmorgan)
* pam_issue: Nalin found segfaulting problems if the PAM_USER_PROMPT
is unset, found some similar problems with assumptions about
realloc. (Bug 476983 - agmorgan)
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 */