diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-20 12:47:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-20 12:47:01 +0000 |
commit | 027271e5a94591da535187fa95d481a1fdbcd9dc (patch) | |
tree | 6cf6a1ed423a2099dfc0e694a6e2e04ab0213ca9 /networking/udhcp/dhcpd.h | |
parent | 0a0180cdc54c87ab53c48705cb2d49b8c19f460e (diff) | |
download | busybox-w32-027271e5a94591da535187fa95d481a1fdbcd9dc.tar.gz busybox-w32-027271e5a94591da535187fa95d481a1fdbcd9dc.tar.bz2 busybox-w32-027271e5a94591da535187fa95d481a1fdbcd9dc.zip |
udhcp: fix wrong order of args here: index_in_strings(opt, dhcp_option_strings);
code shrink while at it:
function old new delta
read_config 406 323 -83
Diffstat (limited to 'networking/udhcp/dhcpd.h')
-rw-r--r-- | networking/udhcp/dhcpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpd.h b/networking/udhcp/dhcpd.h index 0596e0620..4ce442bef 100644 --- a/networking/udhcp/dhcpd.h +++ b/networking/udhcp/dhcpd.h | |||
@@ -108,7 +108,7 @@ int send_inform(struct dhcpMessage *oldpacket); | |||
108 | 108 | ||
109 | /*** files.h ***/ | 109 | /*** files.h ***/ |
110 | 110 | ||
111 | int read_config(const char *file); | 111 | void read_config(const char *file); |
112 | void write_leases(void); | 112 | void write_leases(void); |
113 | void read_leases(const char *file); | 113 | void read_leases(const char *file); |
114 | struct option_set *find_option(struct option_set *opt_list, uint8_t code); | 114 | struct option_set *find_option(struct option_set *opt_list, uint8_t code); |