diff src/protocols/msn/msn.c @ 6622:a4622f1fb5a1

[gaim-migrate @ 7146] (10:10:23) Robot101: kills off OPT_CONN_* in favour of an enum, and deprecates all the IM_FLAGS_* except IM_FLAG_AWAY which is made into GAIM_IM_AUTO_RESP in a GaimImFlags enum. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 25 Aug 2003 14:12:28 +0000
parents cc41123c684a
children 156e6643f9db
line wrap: on
line diff
--- a/src/protocols/msn/msn.c	Mon Aug 25 02:49:42 2003 +0000
+++ b/src/protocols/msn/msn.c	Mon Aug 25 14:12:28 2003 +0000
@@ -476,7 +476,7 @@
 
 static int
 msn_send_im(GaimConnection *gc, const char *who, const char *message,
-			int len, int flags)
+			int len, GaimImFlags flags)
 {
 	GaimAccount *account = gaim_connection_get_account(gc);
 	MsnSession *session = gc->proto_data;
@@ -522,7 +522,7 @@
 		 * we'll fake like we received it ;)
 		 */
 		serv_got_typing_stopped(gc, (char *)who);
-		serv_got_im(gc, who, message, flags | IM_FLAG_GAIMUSER,
+		serv_got_im(gc, who, message, flags,
 					time(NULL), -1);
 	}