diff options
author | Russ Dill | 2003-12-15 22:09:36 +0000 |
---|---|---|
committer | Russ Dill | 2003-12-15 22:09:36 +0000 |
commit | 4a9e34c14867430141c1e510847df0ec91060a5d (patch) | |
tree | 84fe7807595642f4469d98c0a2d7d4f691a52887 /networking/udhcp/options.h | |
parent | a1fece2c70898a1180f0506df6695e3077510731 (diff) | |
download | busybox-4a9e34c14867430141c1e510847df0ec91060a5d.zip busybox-4a9e34c14867430141c1e510847df0ec91060a5d.tar.gz |
options is a pretty common symbol, bad idea to use as a global in udhcp when compiling into busybox
Diffstat (limited to 'networking/udhcp/options.h')
-rw-r--r-- | networking/udhcp/options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/options.h b/networking/udhcp/options.h index 1fded2e..a626658 100644 --- a/networking/udhcp/options.h +++ b/networking/udhcp/options.h @@ -27,7 +27,7 @@ struct dhcp_option { unsigned char code; }; -extern struct dhcp_option options[]; +extern struct dhcp_option dhcp_options[]; extern int option_lengths[]; unsigned char *get_option(struct dhcpMessage *packet, int code); |