]> sjero.net Git - wget/blobdiff - src/host.c
[svn] Minor -Wall-induced fixes. Also, skip_url is removed.
[wget] / src / host.c
index 5d5ae211812d4078c7446eaa506d1811da70e1e4..9cfb21f9e06e49cb372e1faa5bcddea0f1c7ee42 100644 (file)
@@ -21,7 +21,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <ctype.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #else
@@ -273,8 +272,6 @@ same_host (const char *u1, const char *u2)
   char *real1, *real2;
 
   /* Skip protocol, if present.  */
-  u1 += skip_url (u1);
-  u2 += skip_url (u2);
   u1 += skip_proto (u1);
   u2 += skip_proto (u2);