- Timestamp:
- 2010-06-03T10:41:03Z (14 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.c
r3f81999 r5f8ab6a9 64 64 conf->ping_timeout = 300; 65 65 conf->user = NULL; 66 conf->protocols = NULL; 66 67 proxytype = 0; 67 68 … … 128 129 { 129 130 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" 131 132 "\n" 132 133 "An IRC-to-other-chat-networks gateway\n" … … 144 145 " -c Load alternative configuration file\n" 145 146 " -d Specify alternative user configuration directory\n" 147 " -x Command-line interface to password encryption/hashing\n" 146 148 " -h Show this help page.\n" ); 147 149 return NULL; … … 312 314 conf->user = g_strdup( ini->value ); 313 315 } 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 } 314 321 else 315 322 {
Note: See TracChangeset
for help on using the changeset viewer.