summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 89686f5ac..040813c5a 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: ssh-keygen.c,v 1.130 2005/10/07 11:13:57 markus Exp $"); 15RCSID("$OpenBSD: ssh-keygen.c,v 1.131 2005/10/14 02:17:59 stevesk Exp $");
16 16
17#include <openssl/evp.h> 17#include <openssl/evp.h>
18#include <openssl/pem.h> 18#include <openssl/pem.h>
@@ -1222,7 +1222,7 @@ main(int ac, char **av)
1222 if (bits == 0) 1222 if (bits == 0)
1223 bits = DEFAULT_BITS; 1223 bits = DEFAULT_BITS;
1224 if (gen_candidates(out, memory, bits, start) != 0) 1224 if (gen_candidates(out, memory, bits, start) != 0)
1225 fatal("modulus candidate generation failed\n"); 1225 fatal("modulus candidate generation failed");
1226 1226
1227 return (0); 1227 return (0);
1228 } 1228 }
@@ -1245,7 +1245,7 @@ main(int ac, char **av)
1245 out_file, strerror(errno)); 1245 out_file, strerror(errno));
1246 } 1246 }
1247 if (prime_test(in, out, trials, generator_wanted) != 0) 1247 if (prime_test(in, out, trials, generator_wanted) != 0)
1248 fatal("modulus screening failed\n"); 1248 fatal("modulus screening failed");
1249 return (0); 1249 return (0);
1250 } 1250 }
1251 1251