]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Because of the if's I change to else if's, these continue's are now
authorCliff Woolley <jwoolley@apache.org>
Thu, 21 Mar 2002 17:02:53 +0000 (17:02 +0000)
committerCliff Woolley <jwoolley@apache.org>
Thu, 21 Mar 2002 17:02:53 +0000 (17:02 +0000)
functionally useless.  This gets rid of them without changing the behavior
at all (ie, it doesn't matter if this change makes it in to 1.3.24 or not).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@94100 13f79535-47bb-0310-9956-ffa450edef68

src/modules/standard/mod_include.c

index a35115d367a91e836454389af9f8c42564b762c8..4bbf326d0b3feadaec2c7ea4f170d17e3519c904 100644 (file)
@@ -2231,8 +2231,6 @@ static void send_parsed_content(FILE *f, request_rec *r)
                                     &printing);
                     if_nesting = 0;
                 }
-                if (!ret)
-                    continue;
             }
             else if (!strcmp(directive, "else")) {
                 ret = 0;
@@ -2240,8 +2238,6 @@ static void send_parsed_content(FILE *f, request_rec *r)
                     ret = handle_else(f, r, error, &conditional_status,
                                       &printing);
                 }
-                if (!ret)
-                    continue;
             }
             else if (!strcmp(directive, "elif")) {
                 ret = 0;
@@ -2249,8 +2245,6 @@ static void send_parsed_content(FILE *f, request_rec *r)
                     ret = handle_elif(f, r, error, &conditional_status,
                                       &printing);
                 }
-                if (!ret)
-                    continue;
             }
             else if (!strcmp(directive, "endif")) {
                 ret = 0;
@@ -2261,8 +2255,6 @@ static void send_parsed_content(FILE *f, request_rec *r)
                 else {
                     if_nesting--;
                 }
-                if (!ret)
-                    continue;
             }
             else if (!printing) {
                 continue;