diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2009-12-07 21:54:19 +0000 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2009-12-07 21:54:19 +0000 | 
| commit | 2288705af462b4aca2d56f228bff269eab8d8b5f (patch) | |
| tree | cbdf792579f11297773583cc822548867fdfc19c /conf.c | |
| parent | aac40178a6669e20855b7f5d3cc6a82cba10042e (diff) | |
| parent | 36cf9fda6a5cc4bcbfe98319b48af636fa142590 (diff) | |
Merging head.
Diffstat (limited to 'conf.c')
| -rw-r--r-- | conf.c | 6 | 
1 files changed, 3 insertions, 3 deletions
@@ -334,15 +334,15 @@ static int conf_loadini( conf_t *conf, char *file )  			}  			else  			{ -				fprintf( stderr, "Error: Unknown setting `%s` in configuration file.\n", ini->key ); +				fprintf( stderr, "Error: Unknown setting `%s` in configuration file (line %d).\n", ini->key, ini->line );  				return 0;  				/* For now just ignore unknown keys... */  			}  		}  		else if( g_strcasecmp( ini->section, "defaults" ) != 0 )  		{ -			fprintf( stderr, "Error: Unknown section [%s] in configuration file. " -			                 "BitlBee configuration must be put in a [settings] section!\n", ini->section ); +			fprintf( stderr, "Error: Unknown section [%s] in configuration file (line %d). " +			                 "BitlBee configuration must be put in a [settings] section!\n", ini->section, ini->line );  			return 0;  		}  	}  | 
