summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2020-03-06 18:28:27 +0000
committerDamien Miller <djm@mindrot.org>2020-03-13 13:18:31 +1100
commit8fae395f34c2c52cdaf9919aa261d1848b4bb00b (patch)
treeb2e7bf4bf7a243cb50b25db0ebcfd8b34ab77242
parent46e5c4c8ffcd1569bcd5d04803abaa2ecf3e4cff (diff)
upstream: initialize seconds for debug message; ok djm
OpenBSD-Commit-ID: 293fbefe6d00b4812a180ba02e26170e4c855b81
-rw-r--r--ssh-agent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 9e8366a7c..e081413b8 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.256 2020/02/26 13:40:09 jsg Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.257 2020/03/06 18:28:27 markus 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
@@ -428,7 +428,7 @@ process_add_identity(SocketEntry *e)
428{ 428{
429 Identity *id; 429 Identity *id;
430 int success = 0, confirm = 0; 430 int success = 0, confirm = 0;
431 u_int seconds, maxsign; 431 u_int seconds = 0, maxsign;
432 char *fp, *comment = NULL, *ext_name = NULL, *sk_provider = NULL; 432 char *fp, *comment = NULL, *ext_name = NULL, *sk_provider = NULL;
433 char canonical_provider[PATH_MAX]; 433 char canonical_provider[PATH_MAX];
434 time_t death = 0; 434 time_t death = 0;