summaryrefslogtreecommitdiff
path: root/auth-options.c
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2018-08-26 07:31:58 -0400
committerAndrew Cady <d@jerkface.net>2020-10-27 17:45:22 -0400
commitef9269c4983dd3706c90157bdb39717d83e7d085 (patch)
tree2077dc33842df4613ce8029143c6c80ad21d6fab /auth-options.c
parentede8986e4a0e4f19dcc8b972987d29c398c414b9 (diff)
variable renames, store key type
Diffstat (limited to 'auth-options.c')
-rw-r--r--auth-options.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/auth-options.c b/auth-options.c
index 4a4ba9016..d6c4e41b2 100644
--- a/auth-options.c
+++ b/auth-options.c
@@ -40,8 +40,9 @@
40#include "ssh2.h" 40#include "ssh2.h"
41#include "auth-options.h" 41#include "auth-options.h"
42 42
43char *wildcard_match = NULL; 43char *wildcard_remote_key = NULL;
44char *wildcard_fingerprint = NULL; 44char *wildcard_remote_key_type = NULL;
45char *wildcard_remote_key_fingerprint = NULL;
45 46
46static int 47static int
47dup_strings(char ***dstp, size_t *ndstp, char **src, size_t nsrc) 48dup_strings(char ***dstp, size_t *ndstp, char **src, size_t nsrc)