# HG changeset patch # User Daniel Atallah # Date 1139411274 0 # Node ID bce53c3536da43858816fd1a30fcc8dd4d7a8b7d # Parent 5adc0c9da9f39222c3303b37c0decc4cb68bab84 [gaim-migrate @ 15543] the network and stun subsystems need to be initialized before we try to look up the IP committer: Tailor Script diff -r 5adc0c9da9f3 -r bce53c3536da src/core.c --- a/src/core.c Wed Feb 08 07:44:23 2006 +0000 +++ b/src/core.c Wed Feb 08 15:07:54 2006 +0000 @@ -99,8 +99,6 @@ gaim_dbus_init(); #endif - /* Call this early on to try to auto-detect our IP address */ - gaim_network_get_my_ip(-1); /* Initialize all static protocols. */ static_proto_init(); @@ -134,6 +132,9 @@ gaim_xfers_init(); gaim_idle_init(); + /* Call this early on to try to auto-detect our IP address */ + gaim_network_get_my_ip(-1); + if (ops != NULL && ops->ui_init != NULL) ops->ui_init();