Kill the PrintEnv function, unneeded

Signed-off-by: R. Tyler Ballance <tyler@monkeypox.org>
This commit is contained in:
R. Tyler Ballance 2009-03-09 05:06:30 -04:00
parent 8000bd54ba
commit 23b98ab9d8
1 changed files with 0 additions and 9 deletions

View File

@ -38,15 +38,6 @@ FCGX_Stream *_out_stream = NULL;
FCGX_Stream *_error_stream = NULL;
void *_jQuery = NULL; /* Global jQuery buffer to prevent needing to re-read the file per-request */
static void PrintEnv(FCGX_Stream *out, char *label, char **envp)
{
FCGX_FPrintF(out, "%s:<br>\n<pre>\n", label);
for( ; *envp != NULL; envp++) {
FCGX_FPrintF(out, "%s\n", *envp);
}
FCGX_FPrintF(out, "</pre><p>\n");
}
static void *read_file_contents(const char *filepath)
{
struct stat attributes;