~vish/ubuntu/maverick/pidgin/bug25979

« back to all changes in this revision

Viewing changes to libpurple/upnp.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:
130
130
        guint tima;     /* purple_timeout_add handle */
131
131
        int fd;
132
132
        struct sockaddr_in server;
133
 
        gchar service_type[25];
 
133
        gchar service_type[20];
134
134
        int retry_count;
135
135
        gchar *full_url;
136
136
} UPnPDiscoveryData;
807
807
                                control_info.internalip);
808
808
                close(source);
809
809
        } else
810
 
                purple_debug_info("upnp", "Unable to look up local IP\n");
 
810
                purple_debug_error("upnp", "Unable to look up local IP\n");
811
811
 
812
812
}
813
813
 
1049
1049
purple_upnp_get_handle(void)
1050
1050
{
1051
1051
        static int handle;
1052
 
        
 
1052
 
1053
1053
        return &handle;
1054
1054
}
1055
1055