summaryrefslogtreecommitdiff
path: root/auth-options.c
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.c
parente31f067e0bb0c5aea08fb5f828365b135ce60613 (diff)
eliminate warning about const pointer cast
Diffstat (limited to 'auth-options.c')
-rw-r--r--auth-options.c6
1 files changed, 3 insertions, 3 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)