summaryrefslogtreecommitdiff
path: root/sshd.c
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 /sshd.c
parent373d2917a8349aa39f31791ceaaf7fc21b945084 (diff)
typo
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 761ed52c0..f5274a425 100644
--- a/sshd.c
+++ b/sshd.c
@@ -11,7 +11,7 @@
11 */ 11 */
12 12
13#include "includes.h" 13#include "includes.h"
14RCSID("$Id: sshd.c,v 1.44 1999/12/26 23:45:54 damien Exp $"); 14RCSID("$Id: sshd.c,v 1.45 1999/12/26 23:55:23 damien Exp $");
15 15
16#ifdef HAVE_POLL_H 16#ifdef HAVE_POLL_H
17# include <poll.h> 17# include <poll.h>
@@ -242,7 +242,7 @@ int do_pam_auth(const char *user, const char *password)
242{ 242{
243 int pam_retval; 243 int pam_retval;
244 244
245 if ((options.permit_empty_passwd == 0) && (password[0] == '\0') 245 if ((options.permit_empty_passwd == 0) && (password[0] == '\0'))
246 return 0; 246 return 0;
247 247
248 pampasswd = password; 248 pampasswd = password;