Changes in conf.c [90cd6c4:489f996]
Legend:
- Unmodified
- Added
- Removed
-
conf.c
r90cd6c4 r489f996 63 63 conf->ping_timeout = 300; 64 64 conf->user = NULL; 65 conf->protocols = NULL;66 65 proxytype = 0; 67 66 … … 128 127 { 129 128 printf( "Usage: bitlbee [-D/-F [-i <interface>] [-p <port>] [-n] [-v]] [-I]\n" 130 " [-c <file>] [-d <dir>] [- x] [-h]\n"129 " [-c <file>] [-d <dir>] [-h]\n" 131 130 "\n" 132 131 "An IRC-to-other-chat-networks gateway\n" … … 144 143 " -c Load alternative configuration file\n" 145 144 " -d Specify alternative user configuration directory\n" 146 " -x Command-line interface to password encryption/hashing\n"147 145 " -h Show this help page.\n" ); 148 146 return NULL; … … 308 306 conf->user = g_strdup( ini->value ); 309 307 } 310 else if( g_strcasecmp( ini->key, "protocols" ) == 0 )311 {312 g_strfreev( conf->protocols );313 conf->protocols = g_strsplit_set( ini->value, " \t,;", -1 );314 }315 308 else 316 309 {
Note: See TracChangeset
for help on using the changeset viewer.