diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2004-04-19 21:51:50 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2004-04-19 21:51:50 +0000 |
commit | a5e080fd53282cd59987c53cf571223043153190 (patch) | |
tree | c89441182fe4391fcbeae0aaa4508b82fdc46dd6 | |
parent | 820b676c3164dca22403b90fbf7a4f06d75499c7 (diff) |
fix idiot typo that i introduced in my last commit;
spotted by cschneid AT cschneid.com
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 4f0c4e1cbb3..bc8c9701da4 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.210 2004/04/18 23:10:26 djm Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.211 2004/04/19 21:51:49 djm Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -517,7 +517,7 @@ again: * file if the user specifies a config file on the command line. */ if (config != NULL) { - if (!read_config_file(config, host, &options, 0), 0) + if (!read_config_file(config, host, &options, 0)) fatal("Can't open user config file %.100s: " "%.100s", config, strerror(errno)); } else { |