Changeset 57c96f7 for irc_user.c
- Timestamp:
- 2010-04-05T01:00:02Z (15 years ago)
- Branches:
- master
- Children:
- 1f92a58
- Parents:
- 0b5cc72
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_user.c
r0b5cc72 r57c96f7 83 83 } 84 84 85 int irc_user_set_nick( irc_ t *irc, const char *old, const char *new )85 int irc_user_set_nick( irc_user_t *iu, const char *new ) 86 86 { 87 irc_ user_t *iu = irc_user_by_name( irc, old );87 irc_t *irc = iu->irc; 88 88 char key[strlen(new)+1]; 89 89 GSList *cl; … … 100 100 who's in the same channel like our user. */ 101 101 if( iu == irc->user || 102 ( irc_channel_has_user( ic, irc->user) &&102 ( ( ic->flags & IRC_CHANNEL_JOINED ) && 103 103 irc_channel_has_user( ic, iu ) ) ) 104 104 {
Note: See TracChangeset
for help on using the changeset viewer.