summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-02-19 22:12:53 +1100
committerDarren Tucker <dtucker@zip.com.au>2007-02-19 22:12:53 +1100
commitcb0e1753c74fdd4dff390f9e8fec16995b1cce53 (patch)
treed5ba494f4e2b22b2b0bf3eb3b1d4db43d0955ba9
parentc58b5b07420555a12f895b4316b96498d44f02c6 (diff)
- stevesk@cvs.openbsd.org 2007/01/21 01:45:35
[readconf.c] spaces
-rw-r--r--ChangeLog5
-rw-r--r--readconf.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ceb89a5..9cf67b38 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,6 +18,9 @@
- stevesk@cvs.openbsd.org 2007/01/21 01:41:54
[auth-skey.c kex.c ssh-keygen.c session.c clientloop.c]
spaces
+ - stevesk@cvs.openbsd.org 2007/01/21 01:45:35
+ [readconf.c]
+ spaces
20070128
- (djm) [channels.c serverloop.c] Fix so-called "hang on exit" (bz #52)
@@ -2713,4 +2716,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
-$Id: ChangeLog,v 1.4612 2007/02/19 11:12:23 dtucker Exp $
+$Id: ChangeLog,v 1.4613 2007/02/19 11:12:53 dtucker Exp $
diff --git a/readconf.c b/readconf.c
index 10bdb4b4..2485146a 100644
--- a/readconf.c
+++ b/readconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.c,v 1.160 2007/01/17 23:22:52 dtucker Exp $ */
+/* $OpenBSD: readconf.c,v 1.161 2007/01/21 01:45:35 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -545,7 +545,7 @@ parse_yesnoask:
if (*intptr >= SSH_MAX_IDENTITY_FILES)
fatal("%.200s line %d: Too many identity files specified (max %d).",
filename, linenum, SSH_MAX_IDENTITY_FILES);
- charptr = &options->identity_files[*intptr];
+ charptr = &options->identity_files[*intptr];
*charptr = xstrdup(arg);
*intptr = *intptr + 1;
}