xbps/lib/fetch
Agustin Chiappe Berrini be5277591f Fix compilation in ftp.c
When trying to compile the file ftp.c, I get errors related with
warnings that were marked to be reported as error.

This was the original message:

```
fetch/ftp.c:444:8: error: this statement may fall through [-Werror=implicit-fallthrough=]
   type = 'D';
   ~~~~~^~~~~
fetch/ftp.c:445:2: note: here
  case 'D':
  ^~~~
fetch/ftp.c: In function ‘ftp_request’:
fetch/ftp.c:342:3: error: missed loop optimization, the loop counter may overflow [-Werror=unsafe-loop-optimizations]
   for (i = 0; i <= len && i <= end - dst; ++i)
   ^~~
fetch/ftp.c:342:24: error: missed loop optimization, the loop counter may overflow [-Werror=unsafe-loop-optimizations]
   for (i = 0; i <= len && i <= end - dst; ++i)
               ~~~~~~~~~^~~~~~~~~~~~~~~~~
```
2017-08-22 18:03:32 -04:00
..
common.c lib/fetch: default port, error checks and authentication support 2016-09-02 17:50:05 +02:00
common.h lib/fetch: default port, error checks and authentication support 2016-09-02 17:50:05 +02:00
errlist.sh Implemented support for working with remote repositories. 2009-10-27 01:46:00 +01:00
fetch.c lib/fetch: add socks5 support 2016-09-01 00:38:55 +02:00
fetch.h lib/fetch: add socks5 support 2016-09-01 00:38:55 +02:00
file.c libfetch: misc cleanups due to nbcompat removal. 2014-12-28 03:34:36 +01:00
ftp.c Fix compilation in ftp.c 2017-08-22 18:03:32 -04:00
ftp.errors Implemented support for working with remote repositories. 2009-10-27 01:46:00 +01:00
http.c lib/fetch/http.c: send proxy auth on https as connect header. 2016-07-08 08:24:14 +02:00
http.errors libfetch: merge some features from FreeBSD: 2015-10-24 07:52:30 +02:00