diff options
author | Ted Lemon <source@isc.org> | 1998-06-25 18:37:45 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1998-06-25 18:37:45 +0000 |
commit | aaf053e3336e52b512c046c8e943bfcdd7900214 (patch) | |
tree | 735d0238b3a5993e20556253787bb2ceac545d60 /relay | |
parent | ae0b5b7d547b257a3bfd4dd121783ec867acdc93 (diff) | |
download | isc-dhcp-aaf053e3336e52b512c046c8e943bfcdd7900214.tar.gz |
Rhapsody support
Diffstat (limited to 'relay')
-rw-r--r-- | relay/dhcrelay.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/relay/dhcrelay.c b/relay/dhcrelay.c index 5a7edb29..80f382b4 100644 --- a/relay/dhcrelay.c +++ b/relay/dhcrelay.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: dhcrelay.c,v 1.13 1998/06/25 03:39:04 mellon Exp $ Copyright (c) 1997 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhcrelay.c,v 1.14 1998/06/25 18:37:45 mellon Exp $ Copyright (c) 1997 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -56,6 +56,12 @@ struct tree_cache *global_options [256]; int log_perror = 1; +/* Needed to prevent linking against conflex.c. */ +int lexline; +int lexchar; +char *token_line; +char *tlname; + char *path_dhcrelay_pid = _PATH_DHCRELAY_PID; #ifdef USE_FALLBACK |