From: Cliff Woolley Date: Thu, 21 Mar 2002 17:02:53 +0000 (+0000) Subject: Because of the if's I change to else if's, these continue's are now X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efd4564d746b94074a47e14ac1c9475371087ce2;p=thirdparty%2Fapache%2Fhttpd.git Because of the if's I change to else if's, these continue's are now 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 --- diff --git a/src/modules/standard/mod_include.c b/src/modules/standard/mod_include.c index a35115d367a..4bbf326d0b3 100644 --- a/src/modules/standard/mod_include.c +++ b/src/modules/standard/mod_include.c @@ -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;