This commit is contained in:
Damien Miller 1999-12-27 10:55:23 +11:00
parent 373d2917a8
commit d33201e916
1 changed files with 2 additions and 2 deletions

4
sshd.c
View File

@ -11,7 +11,7 @@
*/
#include "includes.h"
RCSID("$Id: sshd.c,v 1.44 1999/12/26 23:45:54 damien Exp $");
RCSID("$Id: sshd.c,v 1.45 1999/12/26 23:55:23 damien Exp $");
#ifdef HAVE_POLL_H
# include <poll.h>
@ -242,7 +242,7 @@ int do_pam_auth(const char *user, const char *password)
{
int pam_retval;
if ((options.permit_empty_passwd == 0) && (password[0] == '\0')
if ((options.permit_empty_passwd == 0) && (password[0] == '\0'))
return 0;
pampasswd = password;