]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix alignment in an 'if' block.
authorChristophe Jaillet <jailletc36@apache.org>
Wed, 20 Apr 2022 06:52:58 +0000 (06:52 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Wed, 20 Apr 2022 06:52:58 +0000 (06:52 +0000)
[skip ci]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1900064 13f79535-47bb-0310-9956-ffa450edef68

support/ab.c

index bd44ead6ba0fa1cad5541dd5e128220a463ad46b..b9c055eec2f38353f05d7025ca0f311d5b78cfff 100644 (file)
@@ -1890,11 +1890,11 @@ static void test(void)
 
     if (!use_html) {
         printf("Benchmarking %s ", hostname);
-    if (isproxy)
-        printf("[through %s:%d] ", proxyhost, proxyport);
-    printf("(be patient)%s",
-           (heartbeatres ? "\n" : "..."));
-    fflush(stdout);
+        if (isproxy)
+            printf("[through %s:%d] ", proxyhost, proxyport);
+        printf("(be patient)%s",
+               (heartbeatres ? "\n" : "..."));
+        fflush(stdout);
     }
 
     con = xcalloc(concurrency, sizeof(struct connection));