Fix typo ( ) and fix a compilation warning (wrong const).

This commit is contained in:
nekral-guest 2009-04-21 22:03:33 +00:00
parent a45b272a2f
commit 2ba18ea4a9

View File

@ -49,7 +49,7 @@
*/
bool hushed (const char *username)
{
const struct passwd *pw;
struct passwd *pw;
char *hushfile;
char buf[BUFSIZ];
bool found;
@ -65,7 +65,7 @@ bool hushed (const char *username)
return false;
}
pw = getspnam (username);
pw = getpwnam (username);
if (NULL == pw) {
return false;
}