summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2004-04-20 20:14:07 +1000
committerDamien Miller <djm@mindrot.org>2004-04-20 20:14:07 +1000
commit914420fe747a447748efd1aa94d03ba5942fa4be (patch)
tree862001973b17508b50ca871f545033e576462a2c /ssh.c
parent1a81258f4ee82e1f9d9d48a2ed93b93d6ce0485d (diff)
- djm@cvs.openbsd.org 2004/04/19 21:51:49
[ssh.c] fix idiot typo that i introduced in my last commit; spotted by cschneid AT cschneid.com
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index 53d7f0f56..9658e4afc 100644
--- a/ssh.c
+++ b/ssh.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: ssh.c,v 1.210 2004/04/18 23:10:26 djm Exp $"); 43RCSID("$OpenBSD: ssh.c,v 1.211 2004/04/19 21:51:49 djm Exp $");
44 44
45#include <openssl/evp.h> 45#include <openssl/evp.h>
46#include <openssl/err.h> 46#include <openssl/err.h>
@@ -526,7 +526,7 @@ again:
526 * file if the user specifies a config file on the command line. 526 * file if the user specifies a config file on the command line.
527 */ 527 */
528 if (config != NULL) { 528 if (config != NULL) {
529 if (!read_config_file(config, host, &options, 0), 0) 529 if (!read_config_file(config, host, &options, 0))
530 fatal("Can't open user config file %.100s: " 530 fatal("Can't open user config file %.100s: "
531 "%.100s", config, strerror(errno)); 531 "%.100s", config, strerror(errno));
532 } else { 532 } else {