From 39724679671680bcfbd40cb104d81a2a5abb370a Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Sat, 17 Mar 2007 20:12:13 +0000 Subject: [PATCH] catch up with changed name git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4633 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c b/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c index b967d30eb4..16b3bdb37a 100644 --- a/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c +++ b/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c @@ -230,8 +230,8 @@ static xmlrpc_value *freeswitch_man(xmlrpc_env *const envP, xmlrpc_value *const return NULL; } - if (!strncasecmp(oid, FREESWITCH_MIB, strlen(FREESWITCH_MIB))) { - relative_oid = oid + strlen(FREESWITCH_MIB); + if (!strncasecmp(oid, FREESWITCH_OID_PREFIX, strlen(FREESWITCH_OID_PREFIX))) { + relative_oid = oid + strlen(FREESWITCH_OID_PREFIX); } else { relative_oid = oid; }