diff options
author | Colin Watson <cjwatson@debian.org> | 2015-08-19 17:00:17 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2015-08-19 17:00:17 +0100 |
commit | 544df7a04ae5b5c1fc30be7c445ad685d7a02dc9 (patch) | |
tree | 33d2a87dd50fe5894ac6ec4579c83401b7ab00a4 /auth.h | |
parent | baccdb349b31c47cd76fb63211f754ed33a9707e (diff) | |
parent | 7de4b03a6e4071d454b72927ffaf52949fa34545 (diff) |
Import openssh_6.9p1.orig.tar.gz
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||
127 | int auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *); | 127 | int auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *); |
128 | int hostbased_key_allowed(struct passwd *, const char *, char *, Key *); | 128 | int hostbased_key_allowed(struct passwd *, const char *, char *, Key *); |
129 | int user_key_allowed(struct passwd *, Key *); | 129 | int user_key_allowed(struct passwd *, Key *, int); |
130 | void pubkey_auth_info(Authctxt *, const Key *, const char *, ...) | 130 | void pubkey_auth_info(Authctxt *, const Key *, const char *, ...) |
131 | __attribute__((__format__ (printf, 3, 4))); | 131 | __attribute__((__format__ (printf, 3, 4))); |
132 | void auth2_record_userkey(Authctxt *, struct sshkey *); | 132 | void auth2_record_userkey(Authctxt *, struct sshkey *); |