diff options
author | Damien Miller <djm@mindrot.org> | 2005-11-05 05:07:33 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2005-11-05 05:07:33 +0100 |
commit | 15d72a00a3cd922f284b8a779a955733f487450f (patch) | |
tree | a958ede2085420f29e8319504b414145974abf7e /ssh-keygen.c | |
parent | - stevesk@cvs.openbsd.org 2005/10/13 22:24:31 (diff) | |
download | openssh-15d72a00a3cd922f284b8a779a955733f487450f.tar.xz openssh-15d72a00a3cd922f284b8a779a955733f487450f.zip |
- stevesk@cvs.openbsd.org 2005/10/14 02:17:59
[ssh-keygen.c ssh.c sshconnect2.c]
no trailing "\n" for log functions; ok djm@
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r-- | ssh-keygen.c | 6 |
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 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.130 2005/10/07 11:13:57 markus Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.131 2005/10/14 02:17:59 stevesk Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -1222,7 +1222,7 @@ main(int ac, char **av) if (bits == 0) bits = DEFAULT_BITS; if (gen_candidates(out, memory, bits, start) != 0) - fatal("modulus candidate generation failed\n"); + fatal("modulus candidate generation failed"); return (0); } @@ -1245,7 +1245,7 @@ main(int ac, char **av) out_file, strerror(errno)); } if (prime_test(in, out, trials, generator_wanted) != 0) - fatal("modulus screening failed\n"); + fatal("modulus screening failed"); return (0); } |