- Timestamp:
- 2010-06-27T16:04:28Z (14 years ago)
- Branches:
- master
- Children:
- 1c40aa7
- Parents:
- 547ea68
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_im.c
r547ea68 r134a02c 535 535 strncpy( stripped, name, MAX_NICK_LENGTH ); 536 536 stripped[MAX_NICK_LENGTH] = '\0'; 537 nick_strip( stripped );537 irc_channel_name_strip( stripped ); 538 538 if( set_getbool( &bee->set, "lcnicks" ) ) 539 539 nick_lc( stripped ); 540 540 541 full_name = g_strdup_printf( " &%s", stripped );541 full_name = g_strdup_printf( "#%s", stripped ); 542 542 543 543 if( stripped[0] && irc_channel_by_name( irc, full_name ) == NULL )
Note: See TracChangeset
for help on using the changeset viewer.