Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • storage_xml.c

    r1783ab6 raed00f8  
    8787        char *pass_b64 = NULL;
    8888        unsigned char *pass_cr = NULL;
    89         int pass_len, local = 0;
     89        int pass_len;
    9090        struct prpl *prpl = NULL;
    9191        account_t *acc;
     
    100100        protocol = xt_find_attr( node, "protocol" );
    101101        if( protocol )
    102         {
    103102                prpl = find_protocol( protocol );
    104                 local = protocol_account_islocal( protocol );
    105         }
    106103       
    107104        if( !handle || !pass_b64 || !protocol || !prpl )
     
    117114                if( tag )
    118115                        set_setstr( &acc->set, "tag", tag );
    119                 if( local )
    120                         acc->flags |= ACC_FLAG_LOCAL;
    121116        }
    122117        else
     
    186181        strncpy( xd->given_nick, my_nick, MAX_NICK_LENGTH );
    187182        xd->given_nick[MAX_NICK_LENGTH] = '\0';
    188         nick_lc( NULL, xd->given_nick );
     183        nick_lc( xd->given_nick );
    189184        xd->given_pass = (char*) password;
    190185       
     
    373368       
    374369        path2 = g_strdup( irc->user->nick );
    375         nick_lc( NULL, path2 );
     370        nick_lc( path2 );
    376371        g_snprintf( path, sizeof( path ) - 20, "%s%s%s", global.conf->configdir, path2, ".xml" );
    377372        g_free( path2 );
     
    429424
    430425        lc = g_strdup( nick );
    431         nick_lc( NULL, lc );
     426        nick_lc( lc );
    432427        g_snprintf( s, 511, "%s%s%s", global.conf->configdir, lc, ".xml" );
    433428        g_free( lc );
Note: See TracChangeset for help on using the changeset viewer.