diff options
author | 2021-01-29 06:28:10 +0000 | |
---|---|---|
committer | 2021-01-29 06:28:10 +0000 | |
commit | a95bc6999cd8c6bf1b88f3a1342766d2f8e12cd4 (patch) | |
tree | 8399983450cff25797cdf5acab6d3a3a3abee802 /usr.bin/ssh/ssh-agent.c | |
parent | Whitespace. (diff) | |
download | wireguard-openbsd-a95bc6999cd8c6bf1b88f3a1342766d2f8e12cd4.tar.xz wireguard-openbsd-a95bc6999cd8c6bf1b88f3a1342766d2f8e12cd4.zip |
give typedef'd struct a struct name; makes the fuzzer I'm writing a bit
easier
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 452e6529353..416f3d7e50c 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/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 <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -94,7 +94,7 @@ typedef enum { AUTH_CONNECTION } sock_type; -typedef struct { +typedef struct socket_entry { int fd; sock_type type; struct sshbuf *input; |