diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-05-31 18:29:20 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-05-31 18:29:20 +0000 |
commit | 75068ce57719f2c97a0759f28b916e76783105fd (patch) | |
tree | 8aa13399a671c86759c7e0528e84903f52ad4e57 /lib/libkeynote/keynote-sign.c | |
parent | e43fdab044424d7c3089f47239027f2963736ef5 (diff) |
Correct prototype and invocation, eliminate a warning or three.
Diffstat (limited to 'lib/libkeynote/keynote-sign.c')
-rw-r--r-- | lib/libkeynote/keynote-sign.c | 7 |
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 */ |