]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
- replaced "<none>" with "nothing" for FTP history escapes. "<none>" is
authorrousskov <>
Wed, 3 Jun 1998 03:50:21 +0000 (03:50 +0000)
committerrousskov <>
Wed, 3 Jun 1998 03:50:21 +0000 (03:50 +0000)
treated as an unknown HTML tag by a browser and the user gets an empty line
instead of a message that no communication has been recorded.

src/errorpage.cc

index 030d0c8680fcfea1ecad90d207e5d6b792535961..6da39703f564b3e788a897c3aaf5c6b767d3aefc 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: errorpage.cc,v 1.136 1998/06/02 04:18:19 wessels Exp $
+ * $Id: errorpage.cc,v 1.137 1998/06/02 21:50:21 rousskov Exp $
  *
  * DEBUG: section 4     Error Generation
  * AUTHOR: Duane Wessels
@@ -393,14 +393,14 @@ errorConvert(char token, ErrorState * err)
        if (err->ftp.request)
            p = err->ftp.request;
        else
-           p = "<none>";
+           p = "nothing";
        break;
     case 'F':
        /* FTP REPLY LINE */
        if (err->ftp.request)
            p = err->ftp.reply;
        else
-           p = "<none>";
+           p = "nothing";
        break;
     case 'g':
        /* FTP SERVER MESSAGE */