~vish/ubuntu/maverick/pidgin/bug25979

« back to all changes in this revision

Viewing changes to libpurple/protocols/irc/dcc_send.c

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-10-09 19:40:26 UTC
  • mfrom: (1.4.1 upstream) (46.1.10 karmic)
  • Revision ID: james.westby@ubuntu.com-20091009194026-wbqqh0bsbz19nx5q
Tags: 1:2.6.2-1ubuntu7
* Don't stick the buddy list window to all desktops as some
  window managers have trouble to properly unstick it (LP: #346840)
  - debian/patches/11_buddy_list_really_show.patch
* Always use default tray icon size on KDE (LP: #209440)
  - debian/patches/62_tray_icon_size_kde.patch
* Use scrollbars in the preferences dialog if the screen height is
  below 700 px instead of 600 px
  - debian/patches/60_1024x600_gtkprefs.c.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 * unsigned 4 byte integer in network byte order)
51
51
 */
52
52
static void irc_dccsend_recv_ack(PurpleXfer *xfer, const guchar *data, size_t size) {
53
 
        unsigned long l;
 
53
        guint32 l;
54
54
        size_t result;
55
55
 
56
56
        l = htonl(xfer->bytes_sent);
302
302
 
303
303
        if (sock < 0) {
304
304
                purple_notify_error(gc, NULL, _("File Transfer Failed"),
305
 
                                    _("Could not open a listening port."));
 
305
                                    _("Unable to open a listening port."));
306
306
                purple_xfer_cancel_local(xfer);
307
307
                return;
308
308
        }
343
343
        if (xd->listen_data == NULL) {
344
344
                purple_xfer_unref(xfer);
345
345
                purple_notify_error(gc, NULL, _("File Transfer Failed"),
346
 
                                    _("Could not open a listening port."));
 
346
                                    _("Unable to open a listening port."));
347
347
                purple_xfer_cancel_local(xfer);
348
348
        }
349
349