From: Anthony Minessale Date: Fri, 24 Aug 2012 18:15:57 +0000 (-0500) Subject: FS-4525 --resolve ok there was 2 parts to this and I missed one, your client actually... X-Git-Tag: v1.2.3^2~180 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0372f57c38eedee7d50808890556a8cc023940d;p=thirdparty%2Ffreeswitch.git FS-4525 --resolve ok there was 2 parts to this and I missed one, your client actually uses different to and from in the subscribe where the majority use the target name in the request, to and from, this should make it compat --- diff --git a/src/mod/endpoints/mod_sofia/sofia_presence.c b/src/mod/endpoints/mod_sofia/sofia_presence.c index 3388745d82..6f734782eb 100644 --- a/src/mod/endpoints/mod_sofia/sofia_presence.c +++ b/src/mod/endpoints/mod_sofia/sofia_presence.c @@ -1626,7 +1626,7 @@ void sofia_presence_mwi_event_handler(switch_event_t *event) static int sofia_presence_sub_reg_callback(void *pArg, int argc, char **argv, char **columnNames) { sofia_profile_t *profile = (sofia_profile_t *) pArg; - char *user = argv[1]; + char *user = argv[3]; char *host = argv[2]; switch_event_t *event; char *event_name = argv[5];