projects
/
dss.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8552c6
)
Print config errors.
author
Andre Noll
<maan@congo.fml.local>
Thu, 27 Mar 2008 10:15:15 +0000
(11:15 +0100)
committer
Andre Noll
<maan@congo.fml.local>
Thu, 27 Mar 2008 10:15:15 +0000
(11:15 +0100)
Dooh. This broke in
9c4bc98761828cbe3997e071ad5b4d24eb52e599
.
dss.c
patch
|
blob
|
history
diff --git
a/dss.c
b/dss.c
index
ef42e39
..
02d0c8b
100644
(file)
--- a/
dss.c
+++ b/
dss.c
@@
-603,7
+603,8
@@
static void parse_config_file(int override)
.override = override,
.initialize = 0,
.check_required = 1,
- .check_ambiguity = 0
+ .check_ambiguity = 0,
+ .print_errors = 1
};
cmdline_parser_config_file(config_file, &conf, ¶ms);
}
@@
-955,7
+956,8
@@
int main(int argc, char **argv)
.override = 0,
.initialize = 1,
.check_required = 0,
- .check_ambiguity = 0
+ .check_ambiguity = 0,
+ .print_errors = 1
};
cmdline_parser_ext(argc, argv, &conf, ¶ms); /* aborts on errors */