summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index 10bdb4b43..2485146a0 100644
--- a/readconf.c
+++ b/readconf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.c,v 1.160 2007/01/17 23:22:52 dtucker Exp $ */ 1/* $OpenBSD: readconf.c,v 1.161 2007/01/21 01:45:35 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -545,7 +545,7 @@ parse_yesnoask:
545 if (*intptr >= SSH_MAX_IDENTITY_FILES) 545 if (*intptr >= SSH_MAX_IDENTITY_FILES)
546 fatal("%.200s line %d: Too many identity files specified (max %d).", 546 fatal("%.200s line %d: Too many identity files specified (max %d).",
547 filename, linenum, SSH_MAX_IDENTITY_FILES); 547 filename, linenum, SSH_MAX_IDENTITY_FILES);
548 charptr = &options->identity_files[*intptr]; 548 charptr = &options->identity_files[*intptr];
549 *charptr = xstrdup(arg); 549 *charptr = xstrdup(arg);
550 *intptr = *intptr + 1; 550 *intptr = *intptr + 1;
551 } 551 }