]> git.pld-linux.org Git - packages/php.git/blob - php-5.3.6-bug-51336.patch
use /usr/sbin/php-fpm as other branches
[packages/php.git] / php-5.3.6-bug-51336.patch
1 --- PHP_5_2/ext/snmp/snmp.c     2011/01/31 11:17:22     307875
2 +++ PHP_5_2/ext/snmp/snmp.c     2011/01/31 11:34:12     307876
3 @@ -502,7 +502,7 @@
4                                         }
5                                 }       
6                         } else {
7 -                               if (st != SNMP_CMD_WALK || response->errstat != SNMP_ERR_NOSUCHNAME) {
8 +                               if ((st != SNMP_CMD_WALK && st != SNMP_CMD_REALWALK) || response->errstat != SNMP_ERR_NOSUCHNAME) {
9                                         php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error in packet: %s", snmp_errstring(response->errstat));
10                                         if (response->errstat == SNMP_ERR_NOSUCHNAME) {
11                                                 for (count=1, vars = response->variables; vars && count != response->errindex;
This page took 0.020952 seconds and 3 git commands to generate.