summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ssh.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index 5e50fa02a..8aa8daae4 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.447 2016/09/30 09:19:13 markus Exp $ */ 1/* $OpenBSD: ssh.c,v 1.448 2016/12/06 07:48:01 djm 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
@@ -2127,8 +2127,9 @@ load_public_identity_files(void)
2127 free(cp); 2127 free(cp);
2128 continue; 2128 continue;
2129 } 2129 }
2130 /* NB. leave filename pointing to private key */
2131 identity_files[n_ids] = xstrdup(filename);
2130 identity_keys[n_ids] = public; 2132 identity_keys[n_ids] = public;
2131 identity_files[n_ids] = cp;
2132 n_ids++; 2133 n_ids++;
2133 } 2134 }
2134 2135