- Timestamp:
- 2009-03-12T19:33:28Z (16 years ago)
- Branches:
- master
- Children:
- fc34fb5
- Parents:
- 823de9d (diff), 9e768da (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
r823de9d r673a54c 79 79 } 80 80 81 while( argc > 0 && ( opt = getopt( argc, argv, "i:p:P:nvIDFc:d:h u:" ) ) >= 0 )81 while( argc > 0 && ( opt = getopt( argc, argv, "i:p:P:nvIDFc:d:hR:u:" ) ) >= 0 ) 82 82 /* ^^^^ Just to make sure we skip this step from the REHASH handler. */ 83 83 { … … 314 314 else 315 315 { 316 fprintf( stderr, "Error: Unknown setting `%s` in configuration file .\n", ini->key);316 fprintf( stderr, "Error: Unknown setting `%s` in configuration file (line %d).\n", ini->key, ini->line ); 317 317 return 0; 318 318 /* For now just ignore unknown keys... */ … … 321 321 else if( g_strcasecmp( ini->section, "defaults" ) != 0 ) 322 322 { 323 fprintf( stderr, "Error: Unknown section [%s] in configuration file . "324 "BitlBee configuration must be put in a [settings] section!\n", ini->section );323 fprintf( stderr, "Error: Unknown section [%s] in configuration file (line %d). " 324 "BitlBee configuration must be put in a [settings] section!\n", ini->section, ini->line ); 325 325 return 0; 326 326 }
Note: See TracChangeset
for help on using the changeset viewer.