]> granicus.if.org Git - php/commitdiff
Fix warnings.
authorAndrei Zmievski <andrei@php.net>
Thu, 14 Sep 2000 20:22:02 +0000 (20:22 +0000)
committerAndrei Zmievski <andrei@php.net>
Thu, 14 Sep 2000 20:22:02 +0000 (20:22 +0000)
ext/snmp/snmp.c

index d59495424d1ffcbfdc904b79680fb1e48548ef52..af1aaa520e33bcf8c45fd5e37f1fa0c0c5caa1ea 100644 (file)
@@ -349,14 +349,14 @@ PHP_FUNCTION(snmpget) {
 /* {{{ proto array snmpwalk(string host, string community, string object_id [, int timeout [, int retries]]) 
    Return all objects under the specified object id */
 PHP_FUNCTION(snmpwalk) {
-       return php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,2);
+       php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,2);
 }
 /* }}} */
 
 /* {{{ proto array snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]])
    Return all objects including their respective object id withing the specified one */
 PHP_FUNCTION(snmprealwalk) {
-       return php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,3);
+       php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,3);
 }
 /* }}} */