diff options
author | Damien Miller <djm@mindrot.org> | 2006-08-18 16:32:46 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-08-18 16:32:46 +0200 |
commit | 3f8123c804bdabbc95caf9e3495310e584944fb2 (patch) | |
tree | a2451a9b597ab738acc510f3bbee14babc048d2c /auth.h | |
parent | - deraadt@cvs.openbsd.org 2006/08/18 09:13:26 (diff) | |
download | openssh-3f8123c804bdabbc95caf9e3495310e584944fb2.tar.xz openssh-3f8123c804bdabbc95caf9e3495310e584944fb2.zip |
- markus@cvs.openbsd.org 2006/08/18 09:15:20
[auth.h session.c sshd.c]
delay authentication related cleanups until we're authenticated and
all alarms have been cancelled; ok deraadt
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: auth.h,v 1.57 2006/08/03 03:34:41 deraadt Exp $ */ +/* $OpenBSD: auth.h,v 1.58 2006/08/18 09:15:20 markus Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -48,6 +48,7 @@ typedef struct KbdintDevice KbdintDevice; struct Authctxt { sig_atomic_t success; + int authenticated; /* authenticated and alarms cancelled */ int postponed; /* authentication needs another step */ int valid; /* user exists and is allowed to login */ int attempt; |