- Timestamp:
- 2010-03-17T13:56:52Z (15 years ago)
- Branches:
- master
- Children:
- b788246
- Parents:
- e5e795d (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
re5e795d r75554d0 63 63 conf->ping_timeout = 300; 64 64 conf->user = NULL; 65 conf->protocols = NULL; 65 66 proxytype = 0; 66 67 … … 127 128 { 128 129 printf( "Usage: bitlbee [-D/-F [-i <interface>] [-p <port>] [-n] [-v]] [-I]\n" 129 " [-c <file>] [-d <dir>] [- h]\n"130 " [-c <file>] [-d <dir>] [-x] [-h]\n" 130 131 "\n" 131 132 "An IRC-to-other-chat-networks gateway\n" … … 143 144 " -c Load alternative configuration file\n" 144 145 " -d Specify alternative user configuration directory\n" 146 " -x Command-line interface to password encryption/hashing\n" 145 147 " -h Show this help page.\n" ); 146 148 return NULL; … … 306 308 conf->user = g_strdup( ini->value ); 307 309 } 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 } 308 315 else 309 316 {
Note: See TracChangeset
for help on using the changeset viewer.