From 9780d16376803744c77135e0a6ae149e88954dc4 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Wed, 12 Jul 2017 21:42:06 +0200 Subject: [PATCH] Fixed bug #74906 redirecting incorrect include --- NEWS | 1 + ext/snmp/snmp.c | 7 +------ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 3c55f0ae0e..4b3d6f92d3 100644 --- a/NEWS +++ b/NEWS @@ -15,6 +15,7 @@ PHP NEWS (Francois Laupretre) . Fixed bug #74923 (Crash when crawling through network share). (Anatol) . Fixed bug #74913 (fixed incorrect poll.h include). (petk) + . Fixed bug #74906 (fixed incorrect errno.h include). (petk) - Date: . Fixed bug #74852 (property_exists returns true on unknown DateInterval diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index e911bf305f..d9a49fb01b 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -38,20 +38,15 @@ #if HAVE_SNMP #include +#include #ifdef PHP_WIN32 #include -#include #include #include "win32/time.h" #else #include #include #include -#ifndef _OSD_POSIX -#include -#else -#include /* BS2000/OSD uses , not */ -#endif #include #endif #ifdef HAVE_UNISTD_H -- 2.50.1