Changeset 5f8ab6a9 for conf.c


Ignore:
Timestamp:
2010-06-03T10:41:03Z (14 years ago)
Author:
Sven Moritz Hallberg <pesco@…>
Branches:
master
Children:
814aa52
Parents:
3f81999 (diff), f9928cb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge in bitlbee 1.2.5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    r3f81999 r5f8ab6a9  
    6464        conf->ping_timeout = 300;
    6565        conf->user = NULL;
     66        conf->protocols = NULL;
    6667        proxytype = 0;
    6768       
     
    128129                {
    129130                        printf( "Usage: bitlbee [-D/-F [-i <interface>] [-p <port>] [-n] [-v]] [-I]\n"
    130                                 "               [-c <file>] [-d <dir>] [-h]\n"
     131                                "               [-c <file>] [-d <dir>] [-x] [-h]\n"
    131132                                "\n"
    132133                                "An IRC-to-other-chat-networks gateway\n"
     
    144145                                "  -c  Load alternative configuration file\n"
    145146                                "  -d  Specify alternative user configuration directory\n"
     147                                "  -x  Command-line interface to password encryption/hashing\n"
    146148                                "  -h  Show this help page.\n" );
    147149                        return NULL;
     
    312314                                conf->user = g_strdup( ini->value );
    313315                        }
     316                        else if( g_strcasecmp( ini->key, "protocols" ) == 0 )
     317                        {
     318                                g_strfreev( conf->protocols );
     319                                conf->protocols = g_strsplit_set( ini->value, " \t,;", -1 );
     320                        }
    314321                        else
    315322                        {
Note: See TracChangeset for help on using the changeset viewer.