diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-07-08 20:38:32 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-07-08 20:38:32 +0000 |
commit | 72a91e0b11c9b9de0605480e11861c820402bc7a (patch) | |
tree | 9b6181e981f1fd8a1ba6638dbddc7ffa47d94da0 /sbin/dhclient/Makefile | |
parent | 7ff62f27543d48fe91cd7c046e342fd39149d32a (diff) |
Fold tables.c into options.c and stop exporting the one
table (dhcp_options) involved. Provide functions
code_to_name(), name_to_code(), code_to_format() and
replace direct access to dhcp_options with them. Eliminate
unneeded 'struct option'.
Unhook tables.c from Makefile.
Diffstat (limited to 'sbin/dhclient/Makefile')
-rw-r--r-- | sbin/dhclient/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/Makefile b/sbin/dhclient/Makefile index 685425f0473..b0113857654 100644 --- a/sbin/dhclient/Makefile +++ b/sbin/dhclient/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.19 2017/04/09 20:44:13 krw Exp $ +# $OpenBSD: Makefile,v 1.20 2017/07/08 20:38:31 krw Exp $ # # Copyright (c) 1996, 1997 The Internet Software Consortium. # All rights reserved. @@ -33,7 +33,7 @@ .include <bsd.own.mk> SRCS= dhclient.c clparse.c dispatch.c bpf.c options.c \ - conflex.c log.c packet.c tables.c \ + conflex.c log.c packet.c \ parse.c privsep.c kroute.c PROG= dhclient |