summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormillert@openbsd.org <millert@openbsd.org>2022-04-20 15:59:18 +0000
committerDarren Tucker <dtucker@dtucker.net>2022-04-27 21:29:17 +1000
commitda8dddf8cc1f2516ff894b8183e83a7c5ba3ef80 (patch)
treec1de0cc1c0942afeb5720094dcb19ebc706992e6
parentfe9d87a6800a7a33be08f4d5ab662a758055ced2 (diff)
downloadopenssh-git-da8dddf8cc1f2516ff894b8183e83a7c5ba3ef80.tar.gz
upstream: Add missing includes of stdlib.h and stdint.h. We need
stdlib.h for malloc(3) and stdint.h for SIZE_MAX. Unlike the other xmss files, ssh-xmss.c does not include xmss_commons.h so ssh-xmss.c must include those headers itself. From Martin Vahlensieck OpenBSD-Commit-ID: 70e28a9818cee3da1be2ef6503d4b396dd421e6b
-rw-r--r--ssh-xmss.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-xmss.c b/ssh-xmss.c
index 7bd3a96a..41ede296 100644
--- a/ssh-xmss.c
+++ b/ssh-xmss.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-xmss.c,v 1.4 2020/10/19 22:49:23 dtucker Exp $*/
+/* $OpenBSD: ssh-xmss.c,v 1.5 2022/04/20 15:59:18 millert Exp $*/
/*
* Copyright (c) 2017 Stefan-Lukas Gazdag.
* Copyright (c) 2017 Markus Friedl.
@@ -22,8 +22,10 @@
#include <sys/types.h>
#include <limits.h>
+#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
+#include <stdint.h>
#include <unistd.h>
#include "log.h"