]> sjero.net Git - wget/commitdiff
[svn] Mark DEL (0x7f) as a control character and | as a character Windows can't
authorhniksic <devnull@localhost>
Mon, 10 Jul 2006 17:01:03 +0000 (10:01 -0700)
committerhniksic <devnull@localhost>
Mon, 10 Jul 2006 17:01:03 +0000 (10:01 -0700)
handle.

src/ChangeLog
src/url.c

index 563abbf38df60fab3d2b7d12f96b368d8a576709..74f0eba84a36bb2542d1192adc2b176d8d8c5aea 100644 (file)
@@ -1,3 +1,8 @@
+2006-06-28  KJKHyperion  <hackbunny@reactos.com>
+
+       * url.c (filechr_table): Mark DEL (0x7f) as a control character
+       and | as a character Windows can't handle.
+
 2006-06-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
 
        * res.c: Implemented is_robots_txt_url function for detection of
index 5025e9377ce7cb18ea43ac1738ce11e347a651d4..0e7e02efdea2beb57ad2c5fa2b35d2f19723ce13 100644 (file)
--- a/src/url.c
+++ b/src/url.c
@@ -1259,7 +1259,7 @@ UWC,  C,  C,  C,   C,  C,  C,  C,   /* NUL SOH STX ETX  EOT ENQ ACK BEL */
   0,  0,  0,  0,   0,  0,  0,  0,   /* `   a   b   c    d   e   f   g   */
   0,  0,  0,  0,   0,  0,  0,  0,   /* h   i   j   k    l   m   n   o   */
   0,  0,  0,  0,   0,  0,  0,  0,   /* p   q   r   s    t   u   v   w   */
-  0,  0,  0,  0,   0,  0,  0,  0,   /* x   y   z   {    |   }   ~   DEL */
+  0,  0,  0,  0,   W,  0,  0,  C,   /* x   y   z   {    |   }   ~   DEL */
 
   C, C, C, C,  C, C, C, C,  C, C, C, C,  C, C, C, C, /* 128-143 */
   C, C, C, C,  C, C, C, C,  C, C, C, C,  C, C, C, C, /* 144-159 */