]> granicus.if.org Git - python/commitdiff
Fix for SF 777848.
authorGuido van Rossum <guido@python.org>
Sat, 20 Mar 2004 22:18:03 +0000 (22:18 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 20 Mar 2004 22:18:03 +0000 (22:18 +0000)
I've been bitten by this myself in the past half year.
I hope this fix is right.
I'll backport this to 2.3.

Lib/CGIHTTPServer.py

index 9e118b2407768c82b26a2a411fc9b78f8f5e89a4..f7b772268daad255408d65ad74e6f15a75f5f867 100644 (file)
@@ -177,12 +177,11 @@ class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
         if co:
             env['HTTP_COOKIE'] = ', '.join(co)
         # XXX Other HTTP_* headers
-        if not self.have_fork:
-            # Since we're setting the env in the parent, provide empty
-            # values to override previously set values
-            for k in ('QUERY_STRING', 'REMOTE_HOST', 'CONTENT_LENGTH',
-                      'HTTP_USER_AGENT', 'HTTP_COOKIE'):
-                env.setdefault(k, "")
+        # Since we're setting the env in the parent, provide empty
+        # values to override previously set values
+        for k in ('QUERY_STRING', 'REMOTE_HOST', 'CONTENT_LENGTH',
+                  'HTTP_USER_AGENT', 'HTTP_COOKIE'):
+            env.setdefault(k, "")
         os.environ.update(env)
 
         self.send_response(200, "Script output follows")