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-08-16 14:42:26 -0400
commit0c69b8b9c83b9f6e6ff5114514a25e70a52b14ce (patch)
treed0254b5a951cbee39cfd7bd9f1bce618faf06a54 /auth-options.c
parent31329e74d517caf07ce189df27441bc9659a7074 (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 5614b8ef7..ccddd1af3 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)