# HG changeset patch # User Elliott Sales de Andrade # Date 1218085724 0 # Node ID 4ca41efb75a74c213212105df2aa734ef4023433 # Parent 59f8890ae8cf44b9f642cfe507a15b4522b0de96 Some whitespace changes to make code from that previous commit look better. diff -r 59f8890ae8cf -r 4ca41efb75a7 libpurple/protocols/msn/notification.c --- a/libpurple/protocols/msn/notification.c Thu Aug 07 05:06:49 2008 +0000 +++ b/libpurple/protocols/msn/notification.c Thu Aug 07 05:08:44 2008 +0000 @@ -1304,26 +1304,26 @@ tmp_timestamp = session->passport_info.mail_timestamp - session->passport_info.sl; buf = g_strdup_printf("%s%lu%s", - session->passport_info.mspauth ? session->passport_info.mspauth : "BOGUS", - tmp_timestamp, - purple_connection_get_password(gc)); + session->passport_info.mspauth ? session->passport_info.mspauth : "BOGUS", + tmp_timestamp, + purple_connection_get_password(gc)); cipher = purple_cipher_context_new_by_name("md5", NULL); purple_cipher_context_append(cipher, (const guchar *)buf, strlen(buf)); purple_cipher_context_digest_to_str(cipher, sizeof(creds), creds, NULL); purple_cipher_context_destroy(cipher); - g_free(buf); g_free(session->passport_info.mail_url); - session->passport_info.mail_url = g_strdup_printf("%s&auth=%s&creds=%s&sl=%ld&username=%s&mode=ttl&sid=%s&id=2&rru=%s&svc=mail&js=yes", - url, - session->passport_info.mspauth ? purple_url_encode(session->passport_info.mspauth) : "BOGUS", - creds, - tmp_timestamp, - msn_user_get_passport(session->user), - session->passport_info.sid, - rru); + session->passport_info.mail_url = + g_strdup_printf("%s&auth=%s&creds=%s&sl=%ld&username=%s&mode=ttl&sid=%s&id=2&rru=%s&svc=mail&js=yes", + url, + session->passport_info.mspauth ? purple_url_encode(session->passport_info.mspauth) : "BOGUS", + creds, + tmp_timestamp, + msn_user_get_passport(session->user), + session->passport_info.sid, + rru); /* The user wants to check his or her email */ if (cmd->trans && cmd->trans->data)