diff options
author | 2001-01-15 21:43:51 +0000 | |
---|---|---|
committer | 2001-01-15 21:43:51 +0000 | |
commit | f513a47109383b9d8ac41056aceeb9bf0d61065b (patch) | |
tree | f422adbc08a12e57d6f53bc3edb538e77cdc0c5f /usr.bin/ssh/dh.c | |
parent | use log() instead of stderr (diff) | |
download | wireguard-openbsd-f513a47109383b9d8ac41056aceeb9bf0d61065b.tar.xz wireguard-openbsd-f513a47109383b9d8ac41056aceeb9bf0d61065b.zip |
use error() not stderr!
Diffstat (limited to 'usr.bin/ssh/dh.c')
-rw-r--r-- | usr.bin/ssh/dh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/dh.c b/usr.bin/ssh/dh.c index 35e9014333b..87a47845007 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.3 2000/11/16 17:55:43 markus Exp $"); +RCSID("$OpenBSD: dh.c,v 1.4 2001/01/15 21:43:51 markus Exp $"); #include "xmalloc.h" @@ -87,7 +87,7 @@ parse_prime(int linenum, char *line, struct dhgroup *dhg) return (1); fail: - fprintf(stderr, "Bad prime description in line %d\n", linenum); + error("Bad prime description in line %d\n", linenum); return (0); } |