/* ** Copyright 1999-2007 Double Precision, Inc. ** See COPYING for distribution information. */ /* */ #include "cgi.h" #if HAVE_UNISTD_H #include #endif #include #include #include extern void error(const char *); const char *cgirelscriptptr() { const char *p=getenv("HTTPS"); if (p && strcasecmp(p, "on") == 0) return (cgihttpsscriptptr()); return (cgihttpscriptptr()); }