From: djm Date: Mon, 18 Dec 2023 15:58:56 +0000 (+0000) Subject: match flag type (s/int/u_int) X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b2352d3c197705f3b918e05fc366fd2b3a335a67;p=openbsd match flag type (s/int/u_int) --- diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index cd77127c724..1790106cf7b 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.303 2023/12/18 14:48:08 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.304 2023/12/18 15:58:56 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -1512,7 +1512,7 @@ no_identities(SocketEntry *e) /* Add an identity to idlist; takes ownership of 'key' and 'comment' */ static void add_p11_identity(struct sshkey *key, char *comment, const char *provider, - time_t death, int confirm, struct dest_constraint *dest_constraints, + time_t death, u_int confirm, struct dest_constraint *dest_constraints, size_t ndest_constraints) { Identity *id;