upstream: fix the values of enum sock_type

OpenBSD-Commit-ID: 18d048f4dbfbb159ff500cfc2700b8fb1407facd
This commit is contained in:
djm@openbsd.org 2021-01-29 06:29:46 +00:00 committed by Damien Miller
parent 8afaa7d791
commit 1a4b927586
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-agent.c,v 1.274 2021/01/29 06:28:10 djm Exp $ */
/* $OpenBSD: ssh-agent.c,v 1.275 2021/01/29 06:29:46 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -103,9 +103,9 @@
#define AGENT_RBUF_LEN (4096)
typedef enum {
AUTH_UNUSED,
AUTH_SOCKET,
AUTH_CONNECTION
AUTH_UNUSED = 0,
AUTH_SOCKET = 1,
AUTH_CONNECTION = 2,
} sock_type;
typedef struct socket_entry {