summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-02-11 18:41:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-02-11 21:11:36 (GMT)
commit40ea4ed9032a80c9dba706d6030bd11b08c35f4d (patch)
treee59d64db67bef5ef33ae220c445ce3dba0236b22 /config.c
parentc5e5a2c097240e7d51374eef398d388c5ee5cc9b (diff)
downloadgit-40ea4ed9032a80c9dba706d6030bd11b08c35f4d.zip
git-40ea4ed9032a80c9dba706d6030bd11b08c35f4d.tar.gz
git-40ea4ed9032a80c9dba706d6030bd11b08c35f4d.tar.bz2
Add config_error_nonbool() helper function
This is used to report misconfigured configuration file that does not give any value to a non-boolean variable, e.g. [section] var It is perfectly fine to say it if the section.var is a boolean (it means true), but if a variable expects a string value it should be flagged as a configuration error. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.c')
-rw-r--r--config.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/config.c b/config.c
index e799f40..03c94a2 100644
--- a/config.c
+++ b/config.c
@@ -1079,3 +1079,12 @@ int git_config_rename_section(const char *old_name, const char *new_name)
free(config_filename);
return ret;
}
+
+/*
+ * Call this to report error for your variable that should not
+ * get a boolean value (i.e. "[my] var" means "true").
+ */
+int config_error_nonbool(const char *var)
+{
+ return error("Missing value for '%s'", var);
+}