Sfoglia il codice sorgente

Change http message 'Waiting for file' to 'Waiting for ...
Author: doogie
Date: 2003-02-12 15:33:36 GMT
Change http message 'Waiting for file' to 'Waiting for headers'.

Arch Librarian 22 anni fa
parent
commit
519c559155
2 ha cambiato i file con 4 aggiunte e 2 eliminazioni
  1. 2 0
      debian/changelog
  2. 2 2
      methods/http.cc

+ 2 - 0
debian/changelog

@@ -93,6 +93,8 @@ apt (0.5.4.9) unstable; urgency=low
     that binary-arch builds do not require documention deps.  Note, that 
     that binary-arch builds do not require documention deps.  Note, that 
     apt-doc is not installed on upgrades.
     apt-doc is not installed on upgrades.
   * Use doc-base, instead of dhelp directly.  Closes: #110389
   * Use doc-base, instead of dhelp directly.  Closes: #110389
+  * Change http message 'Waiting for file' to 'Waiting for headers'.
+    Closes: #178537
 
 
  -- Adam Heath <doogie@debian.org>  Sun, 02 Feb 2003 02:54:45 -0600
  -- Adam Heath <doogie@debian.org>  Sun, 02 Feb 2003 02:54:45 -0600
 
 

+ 2 - 2
methods/http.cc

@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // -*- mode: cpp; mode: fold -*-
 // Description								/*{{{*/
 // Description								/*{{{*/
-// $Id: http.cc,v 1.55 2003/02/10 07:34:41 doogie Exp $
+// $Id: http.cc,v 1.56 2003/02/12 15:33:36 doogie Exp $
 /* ######################################################################
 /* ######################################################################
 
 
    HTTP Aquire Method - This is the HTTP aquire method for APT.
    HTTP Aquire Method - This is the HTTP aquire method for APT.
@@ -337,7 +337,7 @@ int ServerState::RunHeaders()
 {
 {
    State = Header;
    State = Header;
    
    
-   Owner->Status(_("Waiting for file"));
+   Owner->Status(_("Waiting for headers"));
 
 
    Major = 0; 
    Major = 0; 
    Minor = 0; 
    Minor = 0;