Changes in irc_commands.c [2e78f75:c4e61db]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_commands.c
r2e78f75 rc4e61db 97 97 /* just check the password here to be able to reply with useful numerics 98 98 * the actual identification will be handled later */ 99 status = auth_check_pass(irc,user, pass);99 status = storage_check_pass(user, pass); 100 100 101 101 if (status == STORAGE_OK) { … … 767 767 static void irc_cmd_version(irc_t *irc, char **cmd) 768 768 { 769 irc_send_num(irc, 351, "%s-%s. %s : ",770 PACKAGE, BITLBEE_VERSION, irc->root->host );769 irc_send_num(irc, 351, "%s-%s. %s :%s/%s ", 770 PACKAGE, BITLBEE_VERSION, irc->root->host, ARCH, CPU); 771 771 } 772 772
Note: See TracChangeset
for help on using the changeset viewer.