summaryrefslogtreecommitdiff
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
parente31f067e0bb0c5aea08fb5f828365b135ce60613 (diff)
eliminate warning about const pointer cast
-rw-r--r--auth-options.c6
-rw-r--r--auth-options.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/auth-options.c b/auth-options.c
index ccddd1af3..68b5fc40f 100644
--- a/auth-options.c
+++ b/auth-options.c
@@ -40,9 +40,9 @@
40#include "ssh2.h" 40#include "ssh2.h"
41#include "auth-options.h" 41#include "auth-options.h"
42 42
43char *wildcard_remote_key = NULL; 43const char *wildcard_remote_key = NULL;
44char *wildcard_remote_key_type = NULL; 44const char *wildcard_remote_key_type = NULL;
45char *wildcard_remote_key_fingerprint = NULL; 45const char *wildcard_remote_key_fingerprint = NULL;
46 46
47static int 47static int
48dup_strings(char ***dstp, size_t *ndstp, char **src, size_t nsrc) 48dup_strings(char ***dstp, size_t *ndstp, char **src, size_t nsrc)
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);