Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.399
diff -u -r1.399 common.inc
--- includes/common.inc	15 Nov 2004 21:17:25 -0000	1.399
+++ includes/common.inc	17 Nov 2004 17:20:10 -0000
@@ -227,7 +227,7 @@
  * Generates a 404 error if the request can not be handled.
  */
 function drupal_not_found() {
-  header('HTTP/1.0 404 Not Found');
+  header('Status: 404 Not Found');
   watchdog('httpd', t('404 error: %page not found.', array('%page' => '<em>'. check_query($_GET['q']) .'</em>')));
 
   $path = drupal_get_normal_path(variable_get('site_404', ''));
@@ -246,7 +246,7 @@
  * Generates a 403 error if the request is not allowed.
  */
 function drupal_access_denied() {
-  header('HTTP/1.0 403 Forbidden');
+  header('Status: 403 Forbidden');
 
   $path = drupal_get_normal_path(variable_get('site_403', ''));
   $status = MENU_NOT_FOUND;
