From b4b634352de7de5f824eb4cf1ccb2a656f801adc Mon Sep 17 00:00:00 2001 From: Ramkumar Ramachandra Date: Tue, 2 Apr 2013 13:10:29 +0530 Subject: [PATCH] remote.c: simplify a bit of code using git_config_string() A small segment where handle_config() parses the branch.remote configuration variable can be simplified using git_config_string(). Signed-off-by: Ramkumar Ramachandra Reviewed-by: Jeff King Signed-off-by: Junio C Hamano --- remote.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/remote.c b/remote.c index ca1edd901e..34ddc5b8d8 100644 --- a/remote.c +++ b/remote.c @@ -357,9 +357,8 @@ static int handle_config(const char *key, const char *value, void *cb) return 0; branch = make_branch(name, subkey - name); if (!strcmp(subkey, ".remote")) { - if (!value) - return config_error_nonbool(key); - branch->remote_name = xstrdup(value); + if (git_config_string(&branch->remote_name, key, value)) + return -1; if (branch == current_branch) { default_remote_name = branch->remote_name; explicit_default_remote_name = 1; -- 2.11.4.GIT