Update of /cvsroot/gaim/gaim/src/protocols/irc
In directory usw-pr-cvs1:/tmp/cvs-serv19097/protocols/irc
Modified Files:
irc.c
Log Message:
(13:31:13) DennisR: warmenhoven: You should change "Unsupported command" to "Unknown command" (/scan is a real command, but /asdkjhfasdasdfhjk isnt, and both say unsupported command =))
Index: irc.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/irc/irc.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- irc.c 2001/09/30 05:16:30 1.38
+++ irc.c 2001/10/02 20:31:56 1.39
@@ -1216,7 +1216,7 @@
}
if (!c)
return -EINVAL;
- write_to_conv(c, "<B>Unsupported command</B>", WFLAG_SYSTEM, NULL, time(NULL));
+ write_to_conv(c, "<B>Unknown command</B>", WFLAG_SYSTEM, NULL, time(NULL));
}
return 0;
|