# HG changeset patch # User Jeffrey Connelly # Date 1186249787 0 # Node ID 3d400b022accec9f4baddd5cb41f890d239ee9ba # Parent acff371d79085a3074ccf09cd6c7e2f79e531021 Disable sending third-party client version to oncoming buddies. diff -r acff371d7908 -r 3d400b022acc libpurple/protocols/myspace/myspace.c --- a/libpurple/protocols/myspace/myspace.c Sat Aug 04 17:43:37 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.c Sat Aug 04 17:49:47 2007 +0000 @@ -2803,11 +2803,13 @@ purple_prpl_got_user_idle(session->account, username, FALSE, time(NULL)); } +#ifdef MSIM_SEND_CLIENT_VERSION if (status_code == MSIM_STATUS_CODE_ONLINE) { /* Secretly whisper to unofficial clients our own version as they come online */ msim_send_unofficial_client(session, username); } +#endif g_free(username); msim_msg_list_free(list); diff -r acff371d7908 -r 3d400b022acc libpurple/protocols/myspace/myspace.h --- a/libpurple/protocols/myspace/myspace.h Sat Aug 04 17:43:37 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.h Sat Aug 04 17:49:47 2007 +0000 @@ -51,6 +51,8 @@ #include "message.h" /* Conditional compilation options */ +/* Send third-party client version? (Recognized by us and Miranda's plugin) */ +/*#define MSIM_SEND_CLIENT_VERSION */ /* Debugging options */ /*#define MSIM_DEBUG_MSG */