diff options
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applets/applets.c b/applets/applets.c index cfcff3a53..1a2741940 100644 --- a/applets/applets.c +++ b/applets/applets.c @@ -392,10 +392,11 @@ int parse_config_file ( void ) parse_error ( "keyword not within section" ); } fclose ( f ); + return 1; } } } - return 1; + return 0; // no config file or not readable (not an error) pe_label: fprintf ( stderr, "Parse error in %s, line %d: %s\n", CONFIG_FILE, lc, err ); |