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>2015-01-28 07:34:42 +0300
committerEion Robb <eion@robbmob.com>2015-01-28 07:34:42 +0300
commit7dc579c4ba13f69530cd00c8f3a1cf6fc4246216 (patch)
tree302c0c0b987c5d824cf2863ef5e9ee88fae09a36 /skypeweb
parent3fb65b81fa6dc9e82fad250f87ff60c43afba486 (diff)
SkypeWeb : Fix recursive url lookup causing Microsoft OAuth to fail
Diffstat (limited to 'skypeweb')
-rw-r--r--skypeweb/skypeweb_login.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/skypeweb/skypeweb_login.c b/skypeweb/skypeweb_login.c
index 004df79..0c8a0d8 100644
--- a/skypeweb/skypeweb_login.c
+++ b/skypeweb/skypeweb_login.c
@@ -195,7 +195,7 @@ skypeweb_login_got_ppft(PurpleUtilFetchUrlData *url_data, gpointer user_data, co
"Content-Length: %" G_GSIZE_FORMAT "\r\n\r\n%s",
msprequ_cookie, mspok_cookie, cktst_cookie, strlen(postdata->str), postdata->str);
- purple_util_fetch_url_request(sa->account, live_login_url, TRUE, NULL, FALSE, request, FALSE, 524288, skypeweb_login_got_ppft, sa);
+ purple_util_fetch_url_request(sa->account, live_login_url, TRUE, NULL, FALSE, request, FALSE, 524288, skypeweb_login_got_t, sa);
g_string_free(postdata, TRUE);
g_free(request);