From: foobar Date: Wed, 16 Jul 2003 04:54:40 +0000 (+0000) Subject: Fixed bug #22529 (object_id parameter in all snmp*() functions broken.) X-Git-Tag: BEFORE_ARG_INFO~232 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6676e6f2e98f6431c08ea19b7b0cbc3a472110b1;p=php Fixed bug #22529 (object_id parameter in all snmp*() functions broken.) --- diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index 4f2c2c88ff..14f2517f47 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -342,7 +342,7 @@ static void php_snmp_internal(INTERNAL_FUNCTION_PARAMETERS, int st, if (st >= 3) { /* walk */ rootlen = MAX_NAME_LEN; if (strlen(objid)) { /* on a walk, an empty string means top of tree - no error */ - if (read_objid(objid, root, &rootlen)) { + if (snmp_parse_oid(objid, root, &rootlen)) { gotroot = 1; } else { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid object identifier: %s", objid);