From 9c94a356cc61daa85e17c6342db9b3d62f788802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Tue, 21 Feb 2012 12:15:23 +0100 Subject: [PATCH] Fix check for writing remote's fetch and push configurations Fix copy-paste error --- src/remote.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/remote.c b/src/remote.c index 993037edf..91622a894 100644 --- a/src/remote.c +++ b/src/remote.c @@ -199,7 +199,7 @@ int git_remote_save(const git_remote *remote) if (error < GIT_SUCCESS) goto cleanup; - if (remote->fetch.src != NULL && remote->fetch.src != NULL) { + if (remote->fetch.src != NULL && remote->fetch.dst != NULL) { git_buf_clear(&buf); git_buf_clear(&value); git_buf_printf(&buf, "remote.%s.%s", remote->name, "fetch"); @@ -212,7 +212,7 @@ int git_remote_save(const git_remote *remote) goto cleanup; } - if (remote->push.src != NULL && remote->push.src != NULL) { + if (remote->push.src != NULL && remote->push.dst != NULL) { git_buf_clear(&buf); git_buf_clear(&value); git_buf_printf(&buf, "remote.%s.%s", remote->name, "push");