summaryrefslogtreecommitdiff
path: root/auth-options.h
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2020-08-16 18:34:54 -0400
committerAndrew Cady <d@jerkface.net>2020-08-16 18:34:54 -0400
commit9c4a6fdd68cc5218d077618f213ceeeccb446625 (patch)
treeab4afde61c4c7ca081f1c514d650c530ec4925b2 /auth-options.h
parente31f067e0bb0c5aea08fb5f828365b135ce60613 (diff)
eliminate warning about const pointer cast
Diffstat (limited to 'auth-options.h')
-rw-r--r--auth-options.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-options.h b/auth-options.h
index 7b5af66ed..d22aca91d 100644
--- a/auth-options.h
+++ b/auth-options.h
@@ -73,9 +73,9 @@ struct sshauthopt {
73 int no_require_user_presence; 73 int no_require_user_presence;
74}; 74};
75 75
76extern char *wildcard_remote_key; 76extern const char *wildcard_remote_key;
77extern char *wildcard_remote_key_type; 77extern const char *wildcard_remote_key_type;
78extern char *wildcard_remote_key_fingerprint; 78extern const char *wildcard_remote_key_fingerprint;
79 79
80struct sshauthopt *sshauthopt_new(void); 80struct sshauthopt *sshauthopt_new(void);
81struct sshauthopt *sshauthopt_new_with_keys_defaults(void); 81struct sshauthopt *sshauthopt_new_with_keys_defaults(void);