]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Lose const in inet_aton declaration
authorTed Lemon <source@isc.org>
Sat, 29 Mar 1997 10:37:51 +0000 (10:37 +0000)
committerTed Lemon <source@isc.org>
Sat, 29 Mar 1997 10:37:51 +0000 (10:37 +0000)
common/inet_addr.c

index 26fd079d393ceb1f4e8648e55a9c3856f156d127..97667bd247d705f3b93e08ebd5590b0deeb32773 100644 (file)
@@ -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;