summaryrefslogtreecommitdiff
path: root/lib/libkeynote/keynote-sign.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libkeynote/keynote-sign.c')
-rw-r--r--lib/libkeynote/keynote-sign.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libkeynote/keynote-sign.c b/lib/libkeynote/keynote-sign.c
index deca4d24ebb..f24de988a0d 100644
--- a/lib/libkeynote/keynote-sign.c
+++ b/lib/libkeynote/keynote-sign.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: keynote-sign.c,v 1.3 1999/05/24 01:29:22 angelos Exp $ */
+/* $OpenBSD: keynote-sign.c,v 1.4 1999/05/31 18:29:18 angelos Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu)
@@ -41,7 +41,8 @@
#define SIG_PRINT_OFFSET 12
#define SIG_PRINT_LENGTH 50
-extern void print_space(FILE *, int), print_key(FILE *, char *, int, int);
+extern void print_key(FILE *, char *, char *, int, int);
+extern void print_space(FILE *, int);
void
signusage(void)
@@ -200,7 +201,7 @@ keynote_sign(int argc, char *argv[])
}
/* Print signature string */
- print_key(stdout, sig, begin, prlen);
+ print_key(stdout, "", sig, begin, prlen);
free(sig); /* Just a reminder that the result is malloc'ed */