Commit 21398356 authored by Cliff Woolley's avatar Cliff Woolley
Browse files

silence compiler warnings (these weren't really bugs)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90887 13f79535-47bb-0310-9956-ffa450edef68
parent 72417a06
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -223,7 +223,7 @@ static apr_bucket *find_start_sequence(apr_bucket *dptr, include_ctx_t *ctx,
    *do_cleanup = 0;

    do {
        apr_status_t rv;
        apr_status_t rv = 0;
        int read_done = 0;

        if (APR_BUCKET_IS_EOS(dptr)) {
@@ -340,7 +340,7 @@ static apr_bucket *find_end_sequence(apr_bucket *dptr, include_ctx_t *ctx,
    const char *str = ENDING_SEQUENCE;

    do {
        apr_status_t rv;
        apr_status_t rv = 0;
        int read_done = 0;

        if (APR_BUCKET_IS_EOS(dptr)) {