src/protocols/oscar/oscar.c

changeset 3768
bb6cc9d30511
parent 3752
a0468bc9b944
child 3771
fc0f8f47fa58
--- a/src/protocols/oscar/oscar.c	Sun Oct 20 19:08:21 2002 +0000
+++ b/src/protocols/oscar/oscar.c	Sun Oct 20 19:38:36 2002 +0000
@@ -2384,11 +2384,11 @@
 		} break;
 
 		case 0x0001: { /* Paused typing */
-			serv_got_typing_stopped(gc, sn);
+			serv_got_typing(gc, sn, 0, TYPED);
 		} break;
 
 		case 0x0002: { /* Typing */
-			serv_got_typing(gc, sn, 0);
+			serv_got_typing(gc, sn, 0, TYPING);
 		} break;
 
 		default: {
@@ -4323,7 +4323,7 @@
 	if (typing) {
 		/* I had to leave this. It's just too funny. It reminds me of my sister. */
 		debug_printf("ohmigod! %s has started typing (DirectIM). He's going to send you a message! *squeal*\n", sn);
-		serv_got_typing(gc,sn,0);
+		serv_got_typing(gc,sn,0, TYPING);
 	} else
 		serv_got_typing_stopped(gc,sn);
 	return 1;

mercurial