From 0fc72e21621aee190bea626209f256fe3597dd2e Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Tue, 23 Mar 2010 17:25:21 +0100 Subject: [PATCH] fix again bug with proxy config --- coreapi/proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/proxy.c b/coreapi/proxy.c index 287d44652..a1bf54a07 100644 --- a/coreapi/proxy.c +++ b/coreapi/proxy.c @@ -106,7 +106,7 @@ int linphone_proxy_config_set_server_addr(LinphoneProxyConfig *obj, const char * } } if (addr){ - obj->reg_proxy=linphone_address_as_string(addr); + obj->reg_proxy=linphone_address_as_string_uri_only(addr); linphone_address_destroy(addr); }else{ ms_warning("Could not parse %s",server_addr);