Commit 64b79d74 authored by Ben Laurie's avatar Ben Laurie
Browse files

Keep Greg happy.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87608 13f79535-47bb-0310-9956-ffa450edef68
parent 9713785e
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -280,7 +280,7 @@ int ap_invoke_handler(request_rec *r)
{
    const char *handler;
    const char *p;
    size_t handler_len;
    char *p2;
    int result;
    char hbuf[MAX_STRING_LEN];

@@ -289,14 +289,14 @@ int ap_invoke_handler(request_rec *r)
    }
    else {
        handler = r->content_type ? r->content_type : ap_default_type(r);
        if (ap_strchr_c(handler, ';') != NULL) {
        if ((p=ap_strchr_c(handler, ';')) != NULL) {
	    apr_cpystrn(hbuf, handler, sizeof hbuf);
	    p2 = hbuf+(handler-p);
	    handler = hbuf;
	    p = ap_strchr_c(handler, ';');
	    /* MIME type arguments */
            while (p > handler && p[-1] == ' ')
	        --p;		/* strip trailing spaces */
	    *p='\0';
            while (p2 > handler && p2[-1] == ' ')
	        --p2;		/* strip trailing spaces */
	    *p2='\0';
	}
    }