]> andersk Git - openssh.git/blobdiff - auth.c
- stevesk@cvs.openbsd.org 2001/02/04 08:32:27
[openssh.git] / auth.c
diff --git a/auth.c b/auth.c
index 4e3cf675ee0116302dedceb4575c36cbf20c1a59..d08a93369d2592623e0d4eb9e870e4b0370025b9 100644 (file)
--- a/auth.c
+++ b/auth.c
@@ -79,7 +79,7 @@ allowed_user(struct passwd * pw)
                        return 0;
 
                /* Check password expiry */
-               if ((spw->sp_lstchg >= 0) && (spw->sp_max >= 0) && 
+               if ((spw->sp_lstchg >= 0) && (spw->sp_max >= 0) &&
                    (days > (spw->sp_lstchg + spw->sp_max)))
                        return 0;
        }
@@ -165,9 +165,9 @@ allowed_user(struct passwd * pw)
 Authctxt *
 authctxt_new(void)
 {
-        Authctxt *authctxt = xmalloc(sizeof(*authctxt));
-        memset(authctxt, 0, sizeof(*authctxt));
-        return authctxt;
+       Authctxt *authctxt = xmalloc(sizeof(*authctxt));
+       memset(authctxt, 0, sizeof(*authctxt));
+       return authctxt;
 }
 
 struct passwd *
This page took 0.271337 seconds and 4 git commands to generate.