diff options
author | Steven Lawrance <slawrance@php.net> | 1999-08-04 21:12:57 +0000 |
---|---|---|
committer | Steven Lawrance <slawrance@php.net> | 1999-08-04 21:12:57 +0000 |
commit | f09d8b68ab1abc6888b7e804e49cf2e206059410 (patch) | |
tree | 760b147090e16e78299434c5b7ba147132a0fa37 | |
parent | 2aa4138668388c3526a4ca3d20a235b051a774fc (diff) | |
download | php-git-f09d8b68ab1abc6888b7e804e49cf2e206059410.tar.gz |
Fixed a little boo-boo I made during the PHP3->PHP4 conversion.
-rw-r--r-- | ext/snmp/snmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index e354b0de95..e49e8986b2 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -367,7 +367,7 @@ PHP_FUNCTION(snmp_set_quick_print) /* {{{ proto int snmpset(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]]) Set the value of a SNMP object */ -PHP_FUNCTION(php3_snmpset) { +PHP_FUNCTION(snmpset) { _php3_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,11); } /* }}} */ |