]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream commit
authorDamien Miller <djm@mindrot.org>
Fri, 15 Nov 2019 05:01:20 +0000 (16:01 +1100)
committerDamien Miller <djm@mindrot.org>
Fri, 15 Nov 2019 05:01:20 +0000 (16:01 +1100)
revision 1.42
date: 2015/02/05 12:59:57;  author: millert;  state: Exp;  lines: +2 -1;  commitid: DTQbfd4poqBW8iSJ;
Include stdint.h, not limits.h to get SIZE_MAX.  OK guenther@

openbsd-compat/glob.c

index f522e6dde450b4f386552e3fb0f44acec9c40982..e902659718002d3b70d91de8990f3638fc38d4e0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: glob.c,v 1.41 2014/10/08 05:35:27 deraadt Exp $ */
+/*     $OpenBSD: glob.c,v 1.42 2015/02/05 12:59:57 millert Exp $ */
 /*
  * Copyright (c) 1989, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -70,6 +70,9 @@
 #include <limits.h>
 #include <pwd.h>
 #include <stdlib.h>
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 #include <string.h>
 #include <unistd.h>