1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

#include strings.h in ftp.c.

This commit is contained in:
Micahel Baeuerle 2009-08-09 18:19:25 -07:00
parent 22073f546a
commit ba84c1ec98
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-08-09 Michael Baeuerle <michael.baeuerle@gmx.net>
* ftp.c: #include <strings.h> for strcasecmp.
2009-07-28 Micah Cowan <micah@cowan.name>
* main.c (option_data): Rename --html-extension to

View File

@ -33,6 +33,7 @@ as that of the covered work. */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif