summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-12-21 12:42:34 +1100
committerDamien Miller <djm@mindrot.org>2001-12-21 12:42:34 +1100
commitee11625d4309da4d4eb7a307a2a58f35354a001a (patch)
tree11bf0af76b554ec62d238faf1861211763ae18e2 /auth.h
parent3afe375fd288327716a4a6f1cfc05b1ff6535152 (diff)
- markus@cvs.openbsd.org 2001/12/09 18:45:56
[auth2.c auth2-chall.c auth.h] add auth2_challenge_stop(), simplifies cleanup of kbd-int sessions, fixes memleak.
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth.h b/auth.h
index edfc9fb55..30a635d7a 100644
--- a/auth.h
+++ b/auth.h
@@ -21,7 +21,7 @@
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 * 23 *
24 * $OpenBSD: auth.h,v 1.22 2001/06/26 17:27:22 markus Exp $ 24 * $OpenBSD: auth.h,v 1.23 2001/12/09 18:45:56 markus Exp $
25 */ 25 */
26#ifndef AUTH_H 26#ifndef AUTH_H
27#define AUTH_H 27#define AUTH_H
@@ -130,6 +130,7 @@ void userauth_finish(Authctxt *, int, char *);
130int auth_root_allowed(char *); 130int auth_root_allowed(char *);
131 131
132int auth2_challenge(Authctxt *, char *); 132int auth2_challenge(Authctxt *, char *);
133void auth2_challenge_stop(Authctxt *);
133 134
134int allowed_user(struct passwd *); 135int allowed_user(struct passwd *);
135 136