Mercurial > pidgin
changeset 29859:a97ddee04b78
jabber: Nothing to see here
| author | Paul Aurich <paul@darkrain42.org> |
|---|---|
| date | Sat, 01 May 2010 17:38:40 +0000 |
| parents | 2829dd1cc118 |
| children | 3a5194c70b38 |
| files | libpurple/protocols/jabber/auth_plain.c |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/jabber/auth_plain.c Sat May 01 17:21:21 2010 +0000 +++ b/libpurple/protocols/jabber/auth_plain.c Sat May 01 17:38:40 2010 +0000 @@ -47,9 +47,9 @@ } response = g_string_new(""); - response = g_string_append_len(response, "\0", 1); + response = g_string_append_c(response, '\0'); response = g_string_append(response, js->user->node); - response = g_string_append_len(response, "\0", 1); + response = g_string_append_c(response, '\0'); response = g_string_append(response, purple_connection_get_password(js->gc));
