]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Include stdint.h for UINT32_MAX.
authordtucker@openbsd.org <dtucker@openbsd.org>
Fri, 23 May 2025 11:54:50 +0000 (11:54 +0000)
committerDarren Tucker <dtucker@dtucker.net>
Sat, 24 May 2025 03:44:34 +0000 (13:44 +1000)
OpenBSD-Commit-ID: edc29ed67e8bd03bac729d9b4849066d1d3a8cb9

umac.c

diff --git a/umac.c b/umac.c
index df90352604beda8b284386a88664393ea0851a3d..5bf2e43a66faeb6a09198a7588c53f3aefa5573c 100644 (file)
--- 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>