sick

sign and check files using ed25519
Log | Files | Refs | Submodules | README | LICENSE

commit 449abb00b6c12fd3ed5f0b19a250288b05d8e6b3
parent 7ecf401609eb89626e79c80bd037e529e5f33511
Author: z3bra <willyatmailoodotorg>
Date:   Sun May 15 19:39:18 +12000

Return directly after creating the key pair

Diffstat:
sick.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sick.c b/sick.c @@ -242,8 +242,8 @@ main(int argc, char *argv[]) key = fopen(EARGF(usage()), "r"); break; case 'g': - createkeypair(EARGF(usage())); - break; + return createkeypair(EARGF(usage())); + break; /* NOTREACHED */ case 's': action = ACT_SIGN; break;