# HG changeset patch # User Christian Hammond # Date 1058595822 0 # Node ID 36897deb064bde5959e415cb33ccdbafff2d6f4b # Parent 750a5055def65a371345895b84401b7684de3ea1 [gaim-migrate @ 6721] Phone numbers that are set in MSN weren't being encoded. This fixes bug #773735. committer: Tailor Script diff -r 750a5055def6 -r 36897deb064b src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Sat Jul 19 05:32:02 2003 +0000 +++ b/src/protocols/msn/msn.c Sat Jul 19 06:23:42 2003 +0000 @@ -83,7 +83,8 @@ if (entry == NULL || *entry == '\0') g_snprintf(outparams, sizeof(outparams), "%s ", type); else - g_snprintf(outparams, sizeof(outparams), "%s %s", type, entry); + g_snprintf(outparams, sizeof(outparams), "%s %s", type, + msn_url_encode(entry)); if (!msn_servconn_send_command(session->notification_conn, "PRP", outparams)) {