summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-27 10:55:23 +1100
committerDamien Miller <djm@mindrot.org>1999-12-27 10:55:23 +1100
commitd33201e91662a23c6b22f0c748a9b6911c6e78c0 (patch)
treef250f56ff0c4b53c29a6a9268a8cc829afd4a4c5
parent373d2917a8349aa39f31791ceaaf7fc21b945084 (diff)
typo
-rw-r--r--sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 761ed52c..f5274a42 100644
--- a/sshd.c
+++ b/sshd.c
@@ -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;