From 936ce37bf3288be95fe15c41179c522bff665c33 Mon Sep 17 00:00:00 2001 From: Andrew Cady Date: Sun, 16 Aug 2020 18:34:54 -0400 Subject: eliminate warning about const pointer cast --- auth-options.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'auth-options.h') diff --git a/auth-options.h b/auth-options.h index e64acdf70..c6b475be4 100644 --- a/auth-options.h +++ b/auth-options.h @@ -75,9 +75,9 @@ struct sshauthopt { int require_verify; }; -extern char *wildcard_remote_key; -extern char *wildcard_remote_key_type; -extern char *wildcard_remote_key_fingerprint; +extern const char *wildcard_remote_key; +extern const char *wildcard_remote_key_type; +extern const char *wildcard_remote_key_fingerprint; struct sshauthopt *sshauthopt_new(void); struct sshauthopt *sshauthopt_new_with_keys_defaults(void); -- cgit v1.2.3