[openssh-commits] [openssh] 02/03: upstream: Cast serial no for %lld to prevent compiler warnings on some
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu Aug 14 20:52:45 AEST 2025
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit 883886c959ecab152650e231335857eb3193c662
Author: dtucker at openbsd.org <dtucker at openbsd.org>
AuthorDate: Thu Aug 14 09:44:39 2025 +0000
upstream: Cast serial no for %lld to prevent compiler warnings on some
platforms.
OpenBSD-Commit-ID: 46c6063284d318f7e4dc922479a3e394c94b0588
---
auth2-pubkey.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/auth2-pubkey.c b/auth2-pubkey.c
index 221b242f8..d7704e510 100644
--- a/auth2-pubkey.c
+++ b/auth2-pubkey.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth2-pubkey.c,v 1.123 2025/08/06 04:53:04 djm Exp $ */
+/* $OpenBSD: auth2-pubkey.c,v 1.124 2025/08/14 09:44:39 dtucker Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2010 Damien Miller. All rights reserved.
@@ -592,7 +592,7 @@ user_cert_trusted_ca(struct passwd *pw, struct sshkey *key,
fail_reason:
error("Refusing certificate ID \"%s\" serial=%llu "
"signed by %s CA %s: %s", key->cert->key_id,
- key->cert->serial,
+ (unsigned long long)key->cert->serial,
sshkey_type(key->cert->signature_key), ca_fp,
reason);
auth_debug_add("Refused Certificate ID \"%s\" "
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list