changeset 10820:a5a937a18b9b

[gaim-migrate @ 12477] This should compile more better. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 12 Apr 2005 02:42:47 +0000
parents d0599007928f
children 5533f3131582
files plugins/tcl/tcl_cmds.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;