diff options
Diffstat (limited to 'ssh-keysign.c')
-rw-r--r-- | ssh-keysign.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ssh-keysign.c b/ssh-keysign.c index bb70c7dfb..660294bc9 100644 --- a/ssh-keysign.c +++ b/ssh-keysign.c | |||
@@ -38,6 +38,12 @@ RCSID("$OpenBSD: ssh-keysign.c,v 1.2 2002/05/31 10:30:33 markus Exp $"); | |||
38 | #include "canohost.h" | 38 | #include "canohost.h" |
39 | #include "pathnames.h" | 39 | #include "pathnames.h" |
40 | 40 | ||
41 | #ifdef HAVE___PROGNAME | ||
42 | extern char *__progname; | ||
43 | #else | ||
44 | char *__progname; | ||
45 | #endif | ||
46 | |||
41 | static int | 47 | static int |
42 | valid_request(struct passwd *pw, char *host, Key **ret, u_char *data, | 48 | valid_request(struct passwd *pw, char *host, Key **ret, u_char *data, |
43 | u_int datalen) | 49 | u_int datalen) |