summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: aa1dbc9)
raw | patch | inline | side by side (parent: aa1dbc9)
author | Jonas Fonseca <fonseca@diku.dk> | |
Mon, 6 Mar 2006 05:23:30 +0000 (06:23 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 8 Mar 2006 01:06:10 +0000 (17:06 -0800) |
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
repo-config.c | patch | blob | history | |
t/t1300-repo-config.sh | patch | blob | history |
diff --git a/repo-config.c b/repo-config.c
index 9cf65193f95022e50e51d380ca050bef87653555..c5ebb7668a2632ef94cc798552ddd3f6f173e4f4 100644 (file)
--- a/repo-config.c
+++ b/repo-config.c
static int show_config(const char* key_, const char* value_)
{
+ if (value_ == NULL)
+ value_ = "";
+
if (!strcmp(key_, key) &&
(regexp == NULL ||
(do_not_match ^
sprintf(value, "%s", git_config_bool(key_, value_)
? "true" : "false");
} else {
- value = strdup(value_ ? value_ : "");
+ value = strdup(value_);
}
seen++;
}
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh
index 207dd3de6484518018b4eb7efe26dc449a9f71cd..ab4dd5c4ce14c496e1239a0013952c4c422a6a50 100755 (executable)
--- a/t/t1300-repo-config.sh
+++ b/t/t1300-repo-config.sh
test_expect_success 'hierarchical section value' 'cmp .git/config expect'
+cat > .git/config << EOF
+[novalue]
+ variable
+EOF
+
+test_expect_success 'get variable with no value' \
+ 'git-repo-config --get novalue.variable ^$'
+
test_done