diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-11-16 17:55:44 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-11-16 17:55:44 +0000 |
commit | 414fad2ddef9d88b70574928aa19098000d5d013 (patch) | |
tree | 8a989310cd6600dabd681b2d3ce7ea8f88916610 | |
parent | d68ad6fd93490fefd7f26996a3a0a616e6f22c89 (diff) |
do not use perror() in sshd, after the child is forked()
-rw-r--r-- | usr.bin/ssh/dh.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/ssh/dh.c b/usr.bin/ssh/dh.c index ff84619cf68..35e9014333b 100644 --- a/usr.bin/ssh/dh.c +++ b/usr.bin/ssh/dh.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: dh.c,v 1.2 2000/10/11 20:11:35 markus Exp $"); +RCSID("$OpenBSD: dh.c,v 1.3 2000/11/16 17:55:43 markus Exp $"); #include "xmalloc.h" @@ -102,7 +102,6 @@ choose_dh(int minbits) f = fopen(DH_PRIMES, "r"); if (!f) { - perror(DH_PRIMES); log("WARNING: %s does not exist, using old prime", DH_PRIMES); return (dh_new_group1()); } @@ -133,8 +132,7 @@ choose_dh(int minbits) f = fopen(DH_PRIMES, "r"); if (!f) { - perror(DH_PRIMES); - exit(1); + fatal("WARNING: %s dissappeared, giving up", DH_PRIMES); } linenum = 0; |