diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-04 15:28:49 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-04 15:28:49 +0200 |
commit | c03602baa483ed07230c88075121e0f56a4c0428 (patch) | |
tree | 4185c42418e667ce8aae969faf198bc858f24071 /networking/udhcp/common.h | |
parent | 9c0ea86caa2170aee0638b9a8120aeb0f66ca5be (diff) | |
download | busybox-w32-c03602baa483ed07230c88075121e0f56a4c0428.tar.gz busybox-w32-c03602baa483ed07230c88075121e0f56a4c0428.tar.bz2 busybox-w32-c03602baa483ed07230c88075121e0f56a4c0428.zip |
udhcp: s/dhcp_option/dhcp_optflag/g
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r-- | networking/udhcp/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h index 28e34718a..7dd1f119a 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h | |||
@@ -157,7 +157,7 @@ enum { | |||
157 | #define DHCP_MINTYPE DHCPDISCOVER | 157 | #define DHCP_MINTYPE DHCPDISCOVER |
158 | #define DHCP_MAXTYPE DHCPINFORM | 158 | #define DHCP_MAXTYPE DHCPINFORM |
159 | 159 | ||
160 | struct dhcp_option { | 160 | struct dhcp_optflag { |
161 | uint8_t flags; | 161 | uint8_t flags; |
162 | uint8_t code; | 162 | uint8_t code; |
163 | }; | 163 | }; |
@@ -167,7 +167,7 @@ struct option_set { | |||
167 | struct option_set *next; | 167 | struct option_set *next; |
168 | }; | 168 | }; |
169 | 169 | ||
170 | extern const struct dhcp_option dhcp_options[]; | 170 | extern const struct dhcp_optflag dhcp_optflags[]; |
171 | extern const char dhcp_option_strings[]; | 171 | extern const char dhcp_option_strings[]; |
172 | extern const uint8_t dhcp_option_lengths[]; | 172 | extern const uint8_t dhcp_option_lengths[]; |
173 | 173 | ||