]> andersk Git - openssh.git/commitdiff
Enable commented-out "if (compat20)" test. (Should not have been committed.)
authordtucker <dtucker>
Thu, 18 Dec 2003 05:08:59 +0000 (05:08 +0000)
committerdtucker <dtucker>
Thu, 18 Dec 2003 05:08:59 +0000 (05:08 +0000)
auth-pam.c

index 8e7f1e1de582e1f827634acbb94ee34a0a222500..3e0ec1f820e16b85fb9c47d2c74d81a7b52c47da 100644 (file)
@@ -312,7 +312,7 @@ sshpam_thread(void *ctxtp)
        if (sshpam_err != PAM_SUCCESS)
                goto auth_fail;
 
-       /* if (compat20) { */
+       if (compat20) {
                if (!do_pam_account())
                        goto auth_fail;
                if (sshpam_new_authtok_reqd) {
@@ -322,7 +322,7 @@ sshpam_thread(void *ctxtp)
                                goto auth_fail;
                        pam_password_change_required(0);
                }
-       /* } */
+       }
 
        buffer_put_cstring(&buffer, "OK");
 
This page took 0.043537 seconds and 5 git commands to generate.