summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2020-11-20 02:14:16 +0000
committerDarren Tucker <dtucker@dtucker.net>2020-11-20 13:34:52 +1100
commit3a7c46c72b6a1f643b1fc3589cd20d8320c3d9e1 (patch)
tree726a6194c852b4bef98666f81e54c52d350649a6 /sshconnect.c
parent076cb616b87d1ea1d292973fcd0ba38c08ea6832 (diff)
downloadopenssh-git-3a7c46c72b6a1f643b1fc3589cd20d8320c3d9e1.tar.gz
upstream: Explicitly initialize all members of the
find_by_key_ctx struct. Initializing a single member should be enough (the spec says the remainder should be initialized as per the static rules) but some GCCs warn on this which prevents us testing with -Werror on those. ok deraadt@ djm@ OpenBSD-Commit-ID: 687126e60a27d30f02614760ef3c3ae4e8d6af28
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 02f569c1..1abe710c 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.c,v 1.342 2020/11/12 22:56:00 djm Exp $ */
+/* $OpenBSD: sshconnect.c,v 1.343 2020/11/20 02:14:16 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -789,7 +789,7 @@ hostkeys_find_by_key(const char *host, const char *ip, const struct sshkey *key,
char **system_hostfiles, u_int num_system_hostfiles,
char ***names, u_int *nnames)
{
- struct find_by_key_ctx ctx = {0};
+ struct find_by_key_ctx ctx = {0, 0, 0, 0, 0};
u_int i;
*names = NULL;