diff options
author | 2016-05-04 14:04:40 +0000 | |
---|---|---|
committer | 2016-05-04 14:04:40 +0000 | |
commit | 6ac5f5ef35d7b22bd37c0f535b19446de7c8dd15 (patch) | |
tree | c88b77f94476deaf5c18c2ed726b48e27858154b | |
parent | Fix inverted logic for updating StreamLocalBindMask which would cause the (diff) | |
download | wireguard-openbsd-6ac5f5ef35d7b22bd37c0f535b19446de7c8dd15.tar.xz wireguard-openbsd-6ac5f5ef35d7b22bd37c0f535b19446de7c8dd15.zip |
missing const in prototypes (ssh1)
-rw-r--r-- | usr.bin/ssh/auth.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth.h b/usr.bin/ssh/auth.h index e20c6532c4e..c7f6482c6d5 100644 --- a/usr.bin/ssh/auth.h +++ b/usr.bin/ssh/auth.h @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.h,v 1.87 2016/03/07 19:02:43 djm Exp $ */ +/* $OpenBSD: auth.h,v 1.88 2016/05/04 14:04:40 markus Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -115,7 +115,8 @@ BIGNUM *auth_rsa_generate_challenge(Key *); int auth_rsa_verify_response(Key *, BIGNUM *, u_char[]); int auth_rsa_key_allowed(struct passwd *, BIGNUM *, Key **); -int auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *); +int auth_rhosts_rsa_key_allowed(struct passwd *, const char *, + const char *, Key *); int hostbased_key_allowed(struct passwd *, const char *, char *, Key *); int user_key_allowed(struct passwd *, Key *, int); void pubkey_auth_info(Authctxt *, const Key *, const char *, ...) |