diff options
Diffstat (limited to 'ext/snmp')
-rw-r--r-- | ext/snmp/php_snmp.h (renamed from ext/snmp/php3_snmp.h) | 6 | ||||
-rw-r--r-- | ext/snmp/snmp.c | 2 | ||||
-rw-r--r-- | ext/snmp/winsnmp.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/ext/snmp/php3_snmp.h b/ext/snmp/php_snmp.h index 047d3ebf1a..46fbc7e961 100644 --- a/ext/snmp/php3_snmp.h +++ b/ext/snmp/php_snmp.h @@ -19,8 +19,8 @@ */ /* $Id$ */ -#ifndef _PHP3_SNMP_H -#define _PHP3_SNMP_H +#ifndef _PHP_SNMP_H +#define _PHP_SNMP_H #if COMPILE_DL #undef HAVE_SNMP @@ -51,4 +51,4 @@ void php3_info_snmp(ZEND_MODULE_INFO_FUNC_ARGS); #define phpext_snmp_ptr snmp_module_ptr -#endif /* _PHP3_SNMP_H */ +#endif /* _PHP_SNMP_H */ diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index ad81337158..5468809c1e 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -23,7 +23,7 @@ #if defined(COMPILE_DL) #include "dl/phpdl.h" #endif -#include "php3_snmp.h" +#include "php_snmp.h" #include <sys/types.h> #if MSVC5 #include <winsock.h> diff --git a/ext/snmp/winsnmp.c b/ext/snmp/winsnmp.c index fd6c5932ec..9b176e5126 100644 --- a/ext/snmp/winsnmp.c +++ b/ext/snmp/winsnmp.c @@ -7,7 +7,7 @@ Created from the snmputil sample in the Microsoft SDK for NT #include "../phpdl.h" #include "functions/dl.h" #endif -#include "php3_snmp.h" +#include "php_snmp.h" #include <sys/types.h> #include <windows.h> |