From: Ted Lemon Date: Wed, 17 May 2000 16:15:38 +0000 (+0000) Subject: Oops, fix declaration of casecmp. X-Git-Tag: V3-BETA-2-PATCH-1~179 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b66a1a728691f6ae6baadc2a49733fb3405a4e79;p=thirdparty%2Fdhcp.git Oops, fix declaration of casecmp. --- diff --git a/common/hash.c b/common/hash.c index 870f2e4de..9f3bf7063 100644 --- a/common/hash.c +++ b/common/hash.c @@ -43,7 +43,7 @@ #ifndef lint static char copyright[] = -"$Id: hash.c,v 1.22 2000/05/16 23:02:19 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; +"$Id: hash.c,v 1.23 2000/05/17 16:15:38 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -229,7 +229,7 @@ int hash_lookup (vp, table, name, len, file, line) return 0; } -int casecmp (const void *v1, const void *v2, unsigned len) +int casecmp (const void *v1, const void *v2, unsigned long len) { unsigned i; const char *s = v1;