]> git.pld-linux.org Git - packages/wget.git/blob - wget-noabort.patch
- updated to 1.11.1
[packages/wget.git] / wget-noabort.patch
1 err was uninitialized here (FTPOK in most cases), causing later
2 confusion in ftp_loop_internal() and abort()
3 --- wget-1.10.2/src/ftp.c.orig  2005-08-09 00:23:09.000000000 +0200
4 +++ wget-1.10.2/src/ftp.c       2005-11-17 00:29:22.510795976 +0100
5 @@ -908,7 +908,7 @@
6        if (dtsock < 0)
7          {
8            logprintf (LOG_NOTQUIET, "accept: %s\n", strerror (errno));
9 -          return err;
10 +          return CONERROR;
11          }
12      }
13  
This page took 0.043701 seconds and 3 git commands to generate.