We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1656de8 commit 38fd322Copy full SHA for 38fd322
1 file changed
ext/snmp/snmp.c
@@ -1644,15 +1644,15 @@ PHP_FUNCTION(snmp_read_mib)
1644
/* {{{ Resets the MIB tree and set the mib directories to the provided mibdirs. */
1645
PHP_FUNCTION(snmp_init_mib)
1646
{
1647
- zend_string *mibdirs = NULL;
+ zend_string *mibdirs = NULL;
1648
1649
- ZEND_PARSE_PARAMETERS_START(0, 1)
1650
- Z_PARAM_OPTIONAL
1651
- Z_PARAM_STR_OR_NULL(mibdirs)
1652
- ZEND_PARSE_PARAMETERS_END();
+ ZEND_PARSE_PARAMETERS_START(0, 1)
+ Z_PARAM_OPTIONAL
+ Z_PARAM_STR_OR_NULL(mibdirs)
+ ZEND_PARSE_PARAMETERS_END();
1653
1654
// If the mibdirs has been changed, we need to reset the MIB tree at the end of the request
1655
- if (mibdirs != NULL) {
+ if (mibdirs != NULL) {
1656
mib_needs_reset = 1;
1657
}
1658
0 commit comments