mapcache
mapcache copied to clipboard
HTTPS is not correctly identified in CGI mapcache
if(getenv("HTTPS")) { ... }
should be replaced with:
char *https = getenv("HTTPS"); if(https && !strcmp(https,"on")) { ... }
fine by me