Changeset 134a02c for irc_im.c


Ignore:
Timestamp:
2010-06-27T16:04:28Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
1c40aa7
Parents:
547ea68
Message:

irc_channel_name_strip() instead of nick_strip().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_im.c

    r547ea68 r134a02c  
    535535        strncpy( stripped, name, MAX_NICK_LENGTH );
    536536        stripped[MAX_NICK_LENGTH] = '\0';
    537         nick_strip( stripped );
     537        irc_channel_name_strip( stripped );
    538538        if( set_getbool( &bee->set, "lcnicks" ) )
    539539                nick_lc( stripped );
    540540       
    541         full_name = g_strdup_printf( "&%s", stripped );
     541        full_name = g_strdup_printf( "#%s", stripped );
    542542       
    543543        if( stripped[0] && irc_channel_by_name( irc, full_name ) == NULL )
Note: See TracChangeset for help on using the changeset viewer.