diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-08-09 20:43:40 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-08-09 20:43:40 +0200 |
commit | 4f70a32f46f12af59b71e869348dc5db9d0bd930 (patch) | |
tree | 854713d5a274d0860048d5fefa1ee05eabbcb367 /networking/udhcp | |
parent | 85b380f6b21816b3392a987d35cfc79c25ec0ffd (diff) | |
download | busybox-w32-4f70a32f46f12af59b71e869348dc5db9d0bd930.tar.gz busybox-w32-4f70a32f46f12af59b71e869348dc5db9d0bd930.tar.bz2 busybox-w32-4f70a32f46f12af59b71e869348dc5db9d0bd930.zip |
udhcpc6: s/iphdr/ip6_hdr/
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/d6_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/d6_common.h b/networking/udhcp/d6_common.h index dee2558e2..688f5d6c7 100644 --- a/networking/udhcp/d6_common.h +++ b/networking/udhcp/d6_common.h | |||
@@ -34,7 +34,7 @@ struct d6_packet { | |||
34 | uint8_t d6_msg_type; | 34 | uint8_t d6_msg_type; |
35 | uint32_t d6_xid32; | 35 | uint32_t d6_xid32; |
36 | } d6_u; | 36 | } d6_u; |
37 | uint8_t d6_options[576 - sizeof(struct iphdr) - sizeof(struct udphdr) - 4 | 37 | uint8_t d6_options[576 - sizeof(struct ip6_hdr) - sizeof(struct udphdr) - 4 |
38 | + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS]; | 38 | + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS]; |
39 | } PACKED; | 39 | } PACKED; |
40 | #define d6_msg_type d6_u.d6_msg_type | 40 | #define d6_msg_type d6_u.d6_msg_type |