pkgsrc/security/openssh/patches/patch-openbsd-compat_openbsd-compat.h
jperkin 13ff0e954c Explicitly disable roaming, as per CVE-2016-0777 and CVE-2016-0778.
Fix patch dates and offsets while here.  Bump PKGREVISION.
2016-01-18 12:53:25 +00:00

17 lines
519 B
C

$NetBSD: patch-openbsd-compat_openbsd-compat.h,v 1.4 2016/01/18 12:53:26 jperkin Exp $
strtoll() declaration
--- openbsd-compat/openbsd-compat.h.orig 2015-08-21 04:49:03.000000000 +0000
+++ openbsd-compat/openbsd-compat.h
@@ -99,6 +99,10 @@ size_t strlcat(char *dst, const char *sr
int setenv(register const char *name, register const char *value, int rewrite);
#endif
+#ifndef HAVE_STRTOLL
+long long strtoll(const char *, char **, int);
+#endif
+
#ifndef HAVE_STRMODE
void strmode(int mode, char *p);
#endif