From: markus@openbsd.org Date: Fri, 6 Mar 2020 18:28:27 +0000 (+0000) Subject: upstream: initialize seconds for debug message; ok djm X-Git-Tag: V_8_3_P1~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fae395f34c2c52cdaf9919aa261d1848b4bb00b;p=thirdparty%2Fopenssh-portable.git upstream: initialize seconds for debug message; ok djm OpenBSD-Commit-ID: 293fbefe6d00b4812a180ba02e26170e4c855b81 --- 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 @@ -/* $OpenBSD: ssh-agent.c,v 1.256 2020/02/26 13:40:09 jsg Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.257 2020/03/06 18:28:27 markus Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -428,7 +428,7 @@ process_add_identity(SocketEntry *e) { Identity *id; int success = 0, confirm = 0; - u_int seconds, maxsign; + u_int seconds = 0, maxsign; char *fp, *comment = NULL, *ext_name = NULL, *sk_provider = NULL; char canonical_provider[PATH_MAX]; time_t death = 0;