Commit 61189a115bb347c9131224ae985fdefa073ef946

Christopher Bargren 2017-02-10T07:59:22

Fixing a code style issue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/src/remote.c b/src/remote.c
index 808ca78..d3132f7 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -773,10 +773,9 @@ int git_remote__get_http_proxy(git_remote *remote, bool use_ssl, char **proxy_ur
 	/* http_proxy / https_proxy environment variables */
 	error = git__getenv(&val, use_ssl ? "https_proxy" : "http_proxy");
 
-	if (error == GIT_ENOTFOUND) {
-		/* try uppercase environment variables */
+	/* try uppercase environment variables */
+	if (error == GIT_ENOTFOUND)
 		error = git__getenv(&val, use_ssl ? "HTTPS_PROXY" : "HTTP_PROXY");
-	}
 
 	if (error < 0) {
 		if (error == GIT_ENOTFOUND) {