- Timestamp:
- 2009-10-17T17:24:52Z (15 years ago)
- Branches:
- master
- Children:
- c48a033
- Parents:
- 0c41177 (diff), 2e44b1f (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
r0c41177 rc5bc47b 308 308 else 309 309 { 310 fprintf( stderr, "Error: Unknown setting `%s` in configuration file .\n", ini->key);310 fprintf( stderr, "Error: Unknown setting `%s` in configuration file (line %d).\n", ini->key, ini->line ); 311 311 return 0; 312 312 /* For now just ignore unknown keys... */ … … 315 315 else if( g_strcasecmp( ini->section, "defaults" ) != 0 ) 316 316 { 317 fprintf( stderr, "Error: Unknown section [%s] in configuration file . "318 "BitlBee configuration must be put in a [settings] section!\n", ini->section );317 fprintf( stderr, "Error: Unknown section [%s] in configuration file (line %d). " 318 "BitlBee configuration must be put in a [settings] section!\n", ini->section, ini->line ); 319 319 return 0; 320 320 }
Note: See TracChangeset
for help on using the changeset viewer.