]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream commit
authormarkus@openbsd.org <markus@openbsd.org>
Wed, 4 May 2016 14:04:40 +0000 (14:04 +0000)
committerDarren Tucker <dtucker@zip.com.au>
Wed, 4 May 2016 14:10:03 +0000 (00:10 +1000)
missing const in prototypes (ssh1)

Upstream-ID: 789c6ad4928b5fa557369b88c3a6a34926082c05

auth.h

diff --git a/auth.h b/auth.h
index 038b59293a6c93793798e3220fc24aeb8079322b..55170af501ecce64c15ca80e8e104f47c0d63483 100644 (file)
--- a/auth.h
+++ b/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.
@@ -124,7 +124,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 *, ...)