# HG changeset patch # User Mark Doliner # Date 1113273767 0 # Node ID a5a937a18b9b95b18d9e7f0e579d5c0d4e80434b # Parent d0599007928f77bc2e6f17a33e35461d2c8210fd [gaim-migrate @ 12477] This should compile more better. committer: Tailor Script diff -r d0599007928f -r a5a937a18b9b plugins/tcl/tcl_cmds.c --- a/plugins/tcl/tcl_cmds.c Tue Apr 12 02:33:27 2005 +0000 +++ b/plugins/tcl/tcl_cmds.c Tue Apr 12 02:42:47 2005 +0000 @@ -518,7 +518,8 @@ if (account != NULL) { convo = gaim_find_conversation_with_account(GAIM_CONV_ANY, Tcl_GetString(objv[argsused]), account); } else { - convo = gaim_find_conversation(GAIM_CONV_ANY, Tcl_GetString(objv[argsused])); + /* TODO: What should we do here? */ + convo = gaim_find_conversation_with_account(GAIM_CONV_ANY, Tcl_GetString(objv[argsused]), NULL); } Tcl_SetIntObj(result, (int)convo); break;