diff options
author | Ted Lemon <source@isc.org> | 1996-08-29 18:36:41 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1996-08-29 18:36:41 +0000 |
commit | ba602cb001e690b28358257b90f0e8971a5d8b3c (patch) | |
tree | d0912505cff20df8fabe2e0fbf7cb6cbfe14e005 /dhcpxlt.c | |
parent | 72c7bd79575f8295c5aef9a197004c2596aebb6b (diff) | |
download | isc-dhcp-ba602cb001e690b28358257b90f0e8971a5d8b3c.tar.gz |
Type error
Diffstat (limited to 'dhcpxlt.c')
-rw-r--r-- | dhcpxlt.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: dhcpxlt.c,v 1.3 1996/08/29 09:17:25 mellon Exp $ Copyright (c) 1996 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhcpxlt.c,v 1.4 1996/08/29 18:36:41 mellon Exp $ Copyright (c) 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -68,7 +68,7 @@ void cleanup () { /* conf-file :== statements declarations :== <nil> | declaration | declarations declaration */ -void readconf () +int readconf () { FILE *cfile; char *val; @@ -84,6 +84,7 @@ void readconf () convert_statement (cfile); } while (1); token = next_token (&val, cfile); + return 0; } /* statement :== host_statement */ |