# HG changeset patch # User Mark Doliner # Date 1123894190 0 # Node ID df67c09ade6e572e341b1c0c6fe6d38b15b4e746 # Parent 5c15a709835f663f7b8b3858b933b875978ebb0f [gaim-migrate @ 13415] Fix another one of those gaim_request handler bugs. committer: Tailor Script diff -r 5c15a709835f -r df67c09ade6e src/protocols/novell/novell.c --- a/src/protocols/novell/novell.c Sat Aug 13 00:33:48 2005 +0000 +++ b/src/protocols/novell/novell.c Sat Aug 13 00:49:50 2005 +0000 @@ -1867,6 +1867,7 @@ _evt_conference_invite(NMUser * user, NMEvent * event) { NMUserRecord *ur; + GaimConnection *gc; GSList *parms = NULL; const char *title = NULL; const char *secondary = NULL; @@ -1896,7 +1897,8 @@ parms = g_slist_append(parms, nm_event_get_conference(event)); /* Prompt the user */ - gaim_request_action(NULL, title, primary, secondary, + gc = gaim_account_get_connection(user->client_data); + gaim_request_action(gc, title, primary, secondary, GAIM_DEFAULT_ACTION_NONE, parms, 2, _("Yes"), G_CALLBACK(_join_conference_cb), _("No"), G_CALLBACK(_reject_conference_cb));