Changeset 3fbce97 for root_commands.c
- Timestamp:
- 2016-09-24T20:14:34Z (8 years ago)
- Children:
- ba52ac5
- Parents:
- 63cad66 (diff), 82cb190 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
root_commands.c
r63cad66 r3fbce97 163 163 irc_umode_set(irc, "+R", 1); 164 164 165 if (irc->caps & CAP_SASL) { 166 irc_user_t *iu = irc->user; 167 irc_send_num(irc, 900, "%s!%s@%s %s :You are now logged in as %s", 168 iu->nick, iu->user, iu->host, iu->nick, iu->nick); 169 } 170 165 171 bitlbee_whatsnew(irc); 166 172 … … 238 244 irc->status |= USTATUS_IDENTIFIED; 239 245 irc_umode_set(irc, "+R", 1); 246 247 if (irc->caps & CAP_SASL) { 248 irc_user_t *iu = irc->user; 249 irc_send_num(irc, 900, "%s!%s@%s %s :You are now logged in as %s", 250 iu->nick, iu->user, iu->host, iu->nick, iu->nick); 251 } 240 252 241 253 /* Set this var now, or anyone who logs in to his/her … … 413 425 414 426 if (prpl == NULL) { 415 irc_rootmsg(irc, "Unknown protocol"); 427 if (is_protocol_disabled(cmd[2])) { 428 irc_rootmsg(irc, "Protocol disabled in global config"); 429 } else { 430 irc_rootmsg(irc, "Unknown protocol"); 431 } 416 432 return; 417 433 }
Note: See TracChangeset
for help on using the changeset viewer.