summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 5554c0643..859450d36 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -30,7 +30,11 @@ char *client_version_string = NULL;
30char *server_version_string = NULL; 30char *server_version_string = NULL;
31 31
32extern Options options; 32extern Options options;
33#ifdef HAVE___PROGNAME
33extern char *__progname; 34extern char *__progname;
35#else /* HAVE___PROGNAME */
36static const char *__progname = "ssh";
37#endif /* HAVE___PROGNAME */
34 38
35/* 39/*
36 * Connect to the given ssh server using a proxy command. 40 * Connect to the given ssh server using a proxy command.