From: Michael Jerris Date: Thu, 30 Aug 2007 19:37:32 +0000 (+0000) Subject: all the drafts say to use "full" not "yes" for privacy= in rpid. We still accept... X-Git-Tag: v1.0-beta2~664 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc1cff37bfc9f2177a7929f2c8a97fd188331fad;p=thirdparty%2Ffreeswitch.git all the drafts say to use "full" not "yes" for privacy= in rpid. We still accept either. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5683 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index c7c138a45d..44f4c08331 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -505,10 +505,10 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session) if (switch_test_flag(caller_profile, SWITCH_CPF_HIDE_NAME)) { priv = "name"; if (switch_test_flag(caller_profile, SWITCH_CPF_HIDE_NUMBER)) { - priv = "yes"; + priv = "full"; } } else if (switch_test_flag(caller_profile, SWITCH_CPF_HIDE_NUMBER)) { - priv = "yes"; + priv = "full"; } if (switch_test_flag(caller_profile, SWITCH_CPF_SCREEN)) { screen = "yes";