diff options
author | Andrew Cady <d@jerkface.net> | 2020-08-16 18:34:54 -0400 |
---|---|---|
committer | Andrew Cady <d@jerkface.net> | 2021-03-13 10:46:55 -0500 |
commit | b66035b8987ba524576365846b115c3cf4a25a53 (patch) | |
tree | 7638a90ae36210135e7da706281890dc549c50b5 /auth-options.c | |
parent | 0ec7190620055ca1fea5fa63c0b71c333d1c6b1e (diff) |
eliminate warning about const pointer cast
Diffstat (limited to 'auth-options.c')
-rw-r--r-- | auth-options.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-options.c b/auth-options.c index d6c4e41b2..a15bc0502 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 | ||
43 | char *wildcard_remote_key = NULL; | 43 | const char *wildcard_remote_key = NULL; |
44 | char *wildcard_remote_key_type = NULL; | 44 | const char *wildcard_remote_key_type = NULL; |
45 | char *wildcard_remote_key_fingerprint = NULL; | 45 | const char *wildcard_remote_key_fingerprint = NULL; |
46 | 46 | ||
47 | static int | 47 | static int |
48 | dup_strings(char ***dstp, size_t *ndstp, char **src, size_t nsrc) | 48 | dup_strings(char ***dstp, size_t *ndstp, char **src, size_t nsrc) |