From: Ted Lemon Date: Sat, 29 Mar 1997 10:37:51 +0000 (+0000) Subject: Lose const in inet_aton declaration X-Git-Tag: DHCP-970329~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c6cfd0576107efad8915d57c573e0b13f1d5e32;p=thirdparty%2Fdhcp.git Lose const in inet_aton declaration --- diff --git a/common/inet_addr.c b/common/inet_addr.c index 26fd079d3..97667bd24 100644 --- a/common/inet_addr.c +++ b/common/inet_addr.c @@ -43,7 +43,7 @@ static char rcsid[] = "$NetBSD: inet_addr.c,v 1.6 1996/02/02 15:22:23 mrg Exp $" #ifndef lint static char copyright[] = -"$Id: inet_addr.c,v 1.1 1997/03/29 03:56:23 mellon Exp $ Copyright (c) 1983, 1990, 1993 The Regents of the University of California. All rights reserved.\n"; +"$Id: inet_addr.c,v 1.2 1997/03/29 10:37:51 mellon Exp $ Copyright (c) 1983, 1990, 1993 The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -58,7 +58,7 @@ static char copyright[] = */ int inet_aton(cp, addr) - register const char *cp; + char *cp; struct in_addr *addr; { register u_long val;