Tue, 06 May 2014 18:27:58 +0200
Merge release-2.x.y
--- a/Makefile.am Tue May 06 10:46:49 2014 +0200 +++ b/Makefile.am Tue May 06 18:27:58 2014 +0200 @@ -125,10 +125,10 @@ fi package_revision.h: package_revision_raw.txt $(AM_V_GEN)if test -f $<; then \ - echo "#define REVISION \"`cat $<`\"" > $@; \ + echo "#define REVISION \"`cat $<`\"" > $@; \ fi $(AM_V_at)if test ! -f $@ -a -f $(srcdir)/$@; then \ - cp $(srcdir)/$@ $@; \ + cp $(srcdir)/$@ $@; \ fi $(AM_V_at)test -f $@ || echo "#define REVISION \"unknown\"" > $@
--- a/finch/libfinch.c Tue May 06 10:46:49 2014 +0200 +++ b/finch/libfinch.c Tue May 06 18:27:58 2014 +0200 @@ -417,4 +417,3 @@ purple_blist_show(); return TRUE; } -
--- a/libpurple/protocols/oscar/family_auth.c Tue May 06 10:46:49 2014 +0200 +++ b/libpurple/protocols/oscar/family_auth.c Tue May 06 18:27:58 2014 +0200 @@ -589,7 +589,7 @@ frame = flap_frame_new(od, 0x02, 10+2+len); - /* aim_snacid_t snacid = */aim_cachesnac(od, SNAC_FAMILY_AUTH, SNAC_SUBTYPE_AUTH_SECURID_RESPONSE, 0x0000, NULL, 0); + /* aim_snacid_t snacid = */ aim_cachesnac(od, SNAC_FAMILY_AUTH, SNAC_SUBTYPE_AUTH_SECURID_RESPONSE, 0x0000, NULL, 0); aim_putsnac(&frame->data, SNAC_FAMILY_AUTH, SNAC_SUBTYPE_AUTH_SECURID_RESPONSE, 0); byte_stream_put16(&frame->data, len);
--- a/libpurple/protocols/oscar/oscar.c Tue May 06 10:46:49 2014 +0200 +++ b/libpurple/protocols/oscar/oscar.c Tue May 06 18:27:58 2014 +0200 @@ -1663,8 +1663,8 @@ return 1; purple_debug_info("oscar", - "Received a channel 4 message of type 0x%02hx.\n", - (guint16)args->type); + "Received a channel 4 message of type 0x%02hx.", + (guint16)args->type); /* * Split up the message at the delimeter character, then convert each @@ -2461,7 +2461,7 @@ va_start(ap, fr); bn = va_arg(ap, char *); - va_arg(ap, int); /* iconcsumtype */ + va_arg(ap, int); /* iconsumtype */ iconcsum = va_arg(ap, guint8 *); iconcsumlen = va_arg(ap, int); icon = va_arg(ap, guint8 *);
--- a/pidgin/gtkconv.c Tue May 06 10:46:49 2014 +0200 +++ b/pidgin/gtkconv.c Tue May 06 18:27:58 2014 +0200 @@ -6888,7 +6888,6 @@ /* The initial offset is to deal with * escaped entities making the string longer */ int tag_start_offset = 0; - int tag_end_offset = 0; const char *tagname = NULL; /* Enforce direction on alias */ @@ -6906,7 +6905,9 @@ else { g_snprintf(str, 1024, "*%s*:", alias_escaped); tag_start_offset += 1; +#if 0 tag_end_offset = 2; +#endif tagname = "whisper-name"; } } else { @@ -6929,7 +6930,9 @@ tag_start_offset += strlen(AUTO_RESPONSE) - 6 + 1; } else { g_snprintf(str, 1024, "%s:", alias_escaped); +#if 0 tag_end_offset = 1; +#endif } if (flags & PURPLE_MESSAGE_NICK) {
--- a/pidgin/gtkrequest.c Tue May 06 10:46:49 2014 +0200 +++ b/pidgin/gtkrequest.c Tue May 06 18:27:58 2014 +0200 @@ -2538,7 +2538,6 @@ } #ifdef _WIN32 - if (savedialog) { current_folder = purple_prefs_get_path(PIDGIN_PREFS_ROOT "/filelocations/last_save_folder"); } else { @@ -2560,8 +2559,8 @@ g_free(my_documents); } } - #endif + g_signal_connect(G_OBJECT(GTK_FILE_CHOOSER(filesel)), "response", G_CALLBACK(file_ok_check_if_exists_cb), data);