summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth.h b/auth.h
index db8603760..8b27575b0 100644
--- a/auth.h
+++ b/auth.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.h,v 1.82 2015/02/16 22:13:32 djm Exp $ */ 1/* $OpenBSD: auth.h,v 1.84 2015/05/08 06:41:56 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -56,7 +56,7 @@ struct Authctxt {
56 int valid; /* user exists and is allowed to login */ 56 int valid; /* user exists and is allowed to login */
57 int attempt; 57 int attempt;
58 int failures; 58 int failures;
59 int server_caused_failure; 59 int server_caused_failure;
60 int force_pwchange; 60 int force_pwchange;
61 char *user; /* username sent by the client */ 61 char *user; /* username sent by the client */
62 char *service; 62 char *service;
@@ -126,7 +126,7 @@ int auth_rsa_key_allowed(struct passwd *, BIGNUM *, Key **);
126 126
127int auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *); 127int auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *);
128int hostbased_key_allowed(struct passwd *, const char *, char *, Key *); 128int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
129int user_key_allowed(struct passwd *, Key *); 129int user_key_allowed(struct passwd *, Key *, int);
130void pubkey_auth_info(Authctxt *, const Key *, const char *, ...) 130void pubkey_auth_info(Authctxt *, const Key *, const char *, ...)
131 __attribute__((__format__ (printf, 3, 4))); 131 __attribute__((__format__ (printf, 3, 4)));
132void auth2_record_userkey(Authctxt *, struct sshkey *); 132void auth2_record_userkey(Authctxt *, struct sshkey *);