]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: match flag type (s/int/u_int)
authordjm@openbsd.org <djm@openbsd.org>
Mon, 18 Dec 2023 15:58:56 +0000 (15:58 +0000)
committerDamien Miller <djm@mindrot.org>
Mon, 8 Jan 2024 02:25:19 +0000 (13:25 +1100)
OpenBSD-Commit-ID: 9422289747c35ccb7b31d0e1888ccd5e74ad566a

ssh-agent.c

index b6a3f48105eff53b04fac55a15db6a21500746b5..7347aaee5adebc7b3044b0f8dc611fd4b8218911 100644 (file)
@@ -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 <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1525,7 +1525,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;