Changeset 2811940


Ignore:
Timestamp:
2006-07-27T14:55:53Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
a36b030
Parents:
6398094
Message:

Copy-paste considered harmful + Fixed double handling of gc->permit/deny
which actually broke the block/allow commands.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/msn_util.c

    r6398094 r2811940  
    5454{
    5555        struct msn_data *md = gc->proto_data;
    56         GSList *l, **lp = NULL;
    5756        char buf[1024], *realname;
    58        
    59         if( strcmp( list, "AL" ) == 0 )
    60                 lp = &gc->permit;
    61         else if( strcmp( list, "BL" ) == 0 )
    62                 lp = &gc->deny;
    63        
    64         if( lp )
    65                 for( l = *lp; l; l = l->next )
    66                         if( g_strcasecmp( l->data, who ) == 0 )
    67                                 return( 1 );
    6857       
    6958        realname = g_new0( char, strlen( realname_ ) * 3 + 1 );
     
    7665                g_free( realname );
    7766               
    78                 if( lp )
    79                         *lp = g_slist_append( *lp, g_strdup( who ) );
    80                
    8167                return( 1 );
    8268        }
     
    9076{
    9177        struct msn_data *md = gc->proto_data;
    92         GSList *l = NULL, **lp = NULL;
    9378        char buf[1024];
    94        
    95         if( strcmp( list, "AL" ) == 0 )
    96                 lp = &gc->permit;
    97         else if( strcmp( list, "BL" ) == 0 )
    98                 lp = &gc->deny;
    99        
    100         if( lp )
    101         {
    102                 for( l = *lp; l; l = l->next )
    103                         if( g_strcasecmp( l->data, who ) == 0 )
    104                                 break;
    105                
    106                 if( !l )
    107                         return( 1 );
    108         }
    10979       
    11080        g_snprintf( buf, sizeof( buf ), "REM %d %s %s\r\n", ++md->trId, list, who );
    11181        if( msn_write( gc, buf, strlen( buf ) ) )
    112         {
    113                 if( lp )
    114                         *lp = g_slist_remove( *lp, l->data );
    115                
    11682                return( 1 );
    117         }
    11883       
    11984        return( 0 );
  • root_commands.c

    r6398094 r2811940  
    580580               
    581581                irc_usermsg( irc, format, "Handle", "Nickname" );
    582                 for( l = a->gc->deny; l; l = l->next )
     582                for( l = a->gc->permit; l; l = l->next )
    583583                {
    584584                        user_t *u = user_findhandle( a->gc, l->data );
Note: See TracChangeset for help on using the changeset viewer.