Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • account.c

    r286b28e rb75acf6  
    22  * BitlBee -- An IRC to other IM-networks gateway                     *
    33  *                                                                    *
    4   * Copyright 2002-2010 Wilmer van der Gaast and others                *
     4  * Copyright 2002-2004 Wilmer van der Gaast and others                *
    55  \********************************************************************/
    66
     
    5555        s = set_add( &a->set, "auto_reconnect", "true", set_eval_bool, a );
    5656       
    57         s = set_add( &a->set, "nick_source", "handle", NULL, a );
    58        
    5957        s = set_add( &a->set, "password", NULL, set_eval_account, a );
    6058        s->flags |= ACC_SET_NOSAVE | SET_NULL_OK;
     
    7169                prpl->init( a );
    7270       
    73         s = set_add( &a->set, "away", NULL, set_eval_account, a );
    74         s->flags |= SET_NULL_OK;
    75        
    76         if( a->flags & ACC_FLAG_STATUS_MESSAGE )
    77         {
    78                 s = set_add( &a->set, "status", NULL, set_eval_account, a );
    79                 s->flags |= SET_NULL_OK;
    80         }
    81        
    82         return a;
     71        return( a );
    8372}
    8473
     
    132121               
    133122                acc->auto_connect = bool2int( value );
    134                 return value;
    135         }
    136         else if( strcmp( set->key, "away" ) == 0 ||
    137                  strcmp( set->key, "status" ) == 0 )
    138         {
    139                 if( acc->ic && acc->ic->flags & OPT_LOGGED_IN )
    140                 {
    141                         /* If we're currently on-line, set the var now already
    142                            (bit of a hack) and send an update. */
    143                         g_free( set->value );
    144                         set->value = g_strdup( value );
    145                        
    146                         imc_away_send_update( acc->ic );
    147                 }
    148                
    149123                return value;
    150124        }
     
    293267        p->max = 86400;
    294268       
    295         /* Format: /[0-9]+([*+][0-9]+(<[0-9+])?)?/ */
     269        /* Format: /[0-9]+([*+][0-9]+(<[0-9+]))/ */
    296270        while( *value && isdigit( *value ) )
    297271                p->start = p->start * 10 + *value++ - '0';
Note: See TracChangeset for help on using the changeset viewer.