From: djm@openbsd.org Date: Fri, 29 Jan 2021 06:28:10 +0000 (+0000) Subject: upstream: give typedef'd struct a struct name; makes the fuzzer I'm X-Git-Tag: V_8_5_P1~85 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8afaa7d7918419d3da6c0477b83db2159879cb33;p=thirdparty%2Fopenssh-portable.git upstream: give typedef'd struct a struct name; makes the fuzzer I'm writing a bit easier OpenBSD-Commit-ID: 1052ab521505a4d8384d67acb3974ef81b8896cb --- diff --git a/ssh-agent.c b/ssh-agent.c index ef6fa345a..9fb0f0656 100644 --- a/ssh-agent.c +++ b/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.273 2021/01/27 00:37:26 dtucker Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.274 2021/01/29 06:28:10 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -108,7 +108,7 @@ typedef enum { AUTH_CONNECTION } sock_type; -typedef struct { +typedef struct socket_entry { int fd; sock_type type; struct sshbuf *input;