summaryrefslogtreecommitdiffstats
path: root/testagent.cgi
diff options
context:
space:
mode:
authorjustdave%bugzilla.org <>2007-02-11 09:12:24 +0100
committerjustdave%bugzilla.org <>2007-02-11 09:12:24 +0100
commitcbd72dff8696ab1ec64a6b0c31e982d2b3a8df3e (patch)
tree39ad7b0cfa876624c297af718f7625047e06d922 /testagent.cgi
parent2f97f350c6548ea2cec674659f9034d146b99eb3 (diff)
downloadbugzilla-cbd72dff8696ab1ec64a6b0c31e982d2b3a8df3e.tar.gz
bugzilla-cbd72dff8696ab1ec64a6b0c31e982d2b3a8df3e.tar.xz
Bug 369956: Have testserver.pl report whether or not the server is using mod_perl
r=mkanat, a=justdave
Diffstat (limited to 'testagent.cgi')
-rwxr-xr-xtestagent.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/testagent.cgi b/testagent.cgi
index 2d558d2b9..4ecaa15fd 100755
--- a/testagent.cgi
+++ b/testagent.cgi
@@ -19,6 +19,6 @@
use strict;
print "content-type:text/plain\n\n";
-print "OK\n";
+print "OK " . ($::ENV{MOD_PERL} || "mod_cgi") . "\n";
exit;