comparison src/protocols/irc/irc.c @ 2413:1b994d4bb1c3

[gaim-migrate @ 2426] (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 =)) committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 02 Oct 2001 20:31:56 +0000
parents 579f8d4347ad
children a25223b2c29b
comparison
equal deleted inserted replaced
2412:eb9837ab2054 2413:1b994d4bb1c3
1214 } else { 1214 } else {
1215 c = find_conversation(who); 1215 c = find_conversation(who);
1216 } 1216 }
1217 if (!c) 1217 if (!c)
1218 return -EINVAL; 1218 return -EINVAL;
1219 write_to_conv(c, "<B>Unsupported command</B>", WFLAG_SYSTEM, NULL, time(NULL)); 1219 write_to_conv(c, "<B>Unknown command</B>", WFLAG_SYSTEM, NULL, time(NULL));
1220 } 1220 }
1221 1221
1222 return 0; 1222 return 0;
1223 } 1223 }
1224 1224