From 23b98ab9d830c045216e9807cb274554d7015d47 Mon Sep 17 00:00:00 2001 From: "R. Tyler Ballance" Date: Mon, 9 Mar 2009 05:06:30 -0400 Subject: [PATCH] Kill the PrintEnv function, unneeded Signed-off-by: R. Tyler Ballance --- fastjs.cc | 9 --------- 1 file changed, 9 deletions(-) diff --git a/fastjs.cc b/fastjs.cc index 6c63f78..f6ef31a 100644 --- a/fastjs.cc +++ b/fastjs.cc @@ -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:
\n
\n", label);
-    for( ; *envp != NULL; envp++) {
-        FCGX_FPrintF(out, "%s\n", *envp);
-    }
-    FCGX_FPrintF(out, "

\n"); -} - static void *read_file_contents(const char *filepath) { struct stat attributes;