[openssh-commits] [openssh] 01/05: upstream: Include stdint.h for UINT32_MAX.
git+noreply at mindrot.org
git+noreply at mindrot.org
Sat May 24 14:03:47 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 0c64d69e4e24a3ab06f7922ef389e7399c4dfb88
Author: dtucker at openbsd.org <dtucker at openbsd.org>
AuthorDate: Fri May 23 11:54:50 2025 +0000
upstream: Include stdint.h for UINT32_MAX.
OpenBSD-Commit-ID: edc29ed67e8bd03bac729d9b4849066d1d3a8cb9
---
umac.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/umac.c b/umac.c
index df9035260..5bf2e43a6 100644
--- a/umac.c
+++ b/umac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umac.c,v 1.24 2025/05/23 11:25:35 dtucker Exp $ */
+/* $OpenBSD: umac.c,v 1.25 2025/05/23 11:54:50 dtucker Exp $ */
/* -----------------------------------------------------------------------
*
* umac.c -- C Implementation UMAC Message Authentication
@@ -76,6 +76,9 @@
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
#include <stdlib.h>
#include <stddef.h>
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list