summaryrefslogtreecommitdiff
path: root/dhcpxlt.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1996-08-29 18:36:41 +0000
committerTed Lemon <source@isc.org>1996-08-29 18:36:41 +0000
commitba602cb001e690b28358257b90f0e8971a5d8b3c (patch)
treed0912505cff20df8fabe2e0fbf7cb6cbfe14e005 /dhcpxlt.c
parent72c7bd79575f8295c5aef9a197004c2596aebb6b (diff)
downloadisc-dhcp-ba602cb001e690b28358257b90f0e8971a5d8b3c.tar.gz
Type error
Diffstat (limited to 'dhcpxlt.c')
-rw-r--r--dhcpxlt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/dhcpxlt.c b/dhcpxlt.c
index 90f7955b..b08a2f86 100644
--- a/dhcpxlt.c
+++ b/dhcpxlt.c
@@ -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 */