Changeset 2288705 for conf.c


Ignore:
Timestamp:
2009-12-07T21:54:19Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
1c3008a
Parents:
aac4017 (diff), 36cf9fd (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.
Message:

Merging head.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    raac4017 r2288705  
    335335                        else
    336336                        {
    337                                 fprintf( stderr, "Error: Unknown setting `%s` in configuration file.\n", ini->key );
     337                                fprintf( stderr, "Error: Unknown setting `%s` in configuration file (line %d).\n", ini->key, ini->line );
    338338                                return 0;
    339339                                /* For now just ignore unknown keys... */
     
    342342                else if( g_strcasecmp( ini->section, "defaults" ) != 0 )
    343343                {
    344                         fprintf( stderr, "Error: Unknown section [%s] in configuration file. "
    345                                          "BitlBee configuration must be put in a [settings] section!\n", ini->section );
     344                        fprintf( stderr, "Error: Unknown section [%s] in configuration file (line %d). "
     345                                         "BitlBee configuration must be put in a [settings] section!\n", ini->section, ini->line );
    346346                        return 0;
    347347                }
Note: See TracChangeset for help on using the changeset viewer.