X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=cgi.c;h=fd72ee5e919649d954a762b2ff26a19b91954caa;hb=ef490f500f6910b0c620319020a4cd395e31e12b;hp=2e9e2656f40ad7689535bc134d4fec09cc1bf192;hpb=f71fb7cbfbdc1fa6ddea1c177a2c4e7ee553b27a;p=privoxy.git diff --git a/cgi.c b/cgi.c index 2e9e2656..fd72ee5e 100644 --- a/cgi.c +++ b/cgi.c @@ -8,7 +8,7 @@ * actual handler functions are declared elsewhere. * * Copyright : Written by and Copyright (C) 2001-2017 - * members of the Privoxy team. http://www.privoxy.org/ + * members of the Privoxy team. https://www.privoxy.org/ * * Based on the Internet Junkbuster originally written * by and Copyright (C) 1997 Anonymous Coders and @@ -1594,7 +1594,7 @@ struct http_response *finish_http_response(struct client_state *csp, struct http if (NULL != csp->config->cors_allowed_origin) { enlist_unique_header(rsp->headers, "Access-Control-Allow-Origin", - strdup_or_die(csp->config->cors_allowed_origin)); + csp->config->cors_allowed_origin); enlist_unique_header(rsp->headers, "Access-Control-Allow-Methods", "GET,POST"); enlist_unique_header(rsp->headers, "Access-Control-Allow-Headers", "X-Requested-With"); enlist_unique_header(rsp->headers, "Access-Control-Max-Age", "86400"); @@ -1605,7 +1605,7 @@ struct http_response *finish_http_response(struct client_state *csp, struct http * unless the client asked for HTTP/1.0. */ snprintf(buf, sizeof(buf), "%s %s", - strcmpic(csp->http->ver, "HTTP/1.0") ? "HTTP/1.1" : "HTTP/1.0", + strcmpic(csp->http->version, "HTTP/1.0") ? "HTTP/1.1" : "HTTP/1.0", rsp->status ? rsp->status : "200 OK"); err = enlist_first(rsp->headers, buf);