Changes in irc_user.c [0e788f5:e277e80]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_user.c
r0e788f5 re277e80 36 36 37 37 iu->key = g_strdup( nick ); 38 nick_lc( i u->key );38 nick_lc( irc, iu->key ); 39 39 /* Using the hash table for speed and irc->users for easy iteration 40 40 through the list (since the GLib API doesn't have anything sane … … 107 107 108 108 strcpy( key, nick ); 109 if( nick_lc( key ) )109 if( nick_lc( irc, key ) ) 110 110 return g_hash_table_lookup( irc->nick_user_hash, key ); 111 111 else … … 121 121 122 122 strcpy( key, new ); 123 if( iu == NULL || !nick_lc( key ) ||123 if( iu == NULL || !nick_lc( irc, key ) || 124 124 ( ( new_iu = irc_user_by_name( irc, new ) ) && new_iu != iu ) ) 125 125 return 0;
Note: See TracChangeset
for help on using the changeset viewer.