]> sjero.net Git - wget/commitdiff
#include strings.h in ftp.c.
authorMicahel Baeuerle <michael.baeuerle@gmx.net>
Mon, 10 Aug 2009 01:19:25 +0000 (18:19 -0700)
committerMicahel Baeuerle <michael.baeuerle@gmx.net>
Mon, 10 Aug 2009 01:19:25 +0000 (18:19 -0700)
src/ChangeLog
src/ftp.c

index f53b6d49d25d926ca0ca2910e5f27856743f3563..697690d58edb56a5dcbf295565959c3053499536 100644 (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
index 2b4a823a838db60fcdd0ae42c3bae17c7d7bd870..fdac83cf7a6f00c43a0d481cf386d4e315f6cb37 100644 (file)
--- a/src/ftp.c
+++ b/src/ftp.c
@@ -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