Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2009-01-05 22:59:18 +0300
committerEion Robb <eion@robbmob.com>2009-01-05 22:59:18 +0300
commit2bcf50ff0d6327ef407fea2523dbc5b7be5e961a (patch)
tree24e97c15897b7b992cd2b5d72155861c8f669510 /skype_events.c
parentc67465c8978dbf9f211b961ad4449689ccfd1530 (diff)
Revert last change, should be NULL terminated and not ""
Diffstat (limited to 'skype_events.c')
-rw-r--r--skype_events.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/skype_events.c b/skype_events.c
index b9e4c2b..117929e 100644
--- a/skype_events.c
+++ b/skype_events.c
@@ -138,7 +138,7 @@ skype_handle_received_message(char *message)
//Dont say we got their status unless its changed
if (!status || !g_str_equal(purple_status_get_id(status), string_parts[3]))
{
- purple_prpl_got_user_status(this_account, string_parts[1], string_parts[3], "");
+ purple_prpl_got_user_status(this_account, string_parts[1], string_parts[3], NULL);
}
//dont update buddy icon/mood for offline/skypeout users
if (!g_str_equal(string_parts[3], "OFFLINE") && !g_str_equal(string_parts[3], "SKYPEOUT"))