summaryrefslogtreecommitdiff
path: root/networking/udhcp/options.h
diff options
context:
space:
mode:
authorRuss Dill2003-12-15 22:09:36 +0000
committerRuss Dill2003-12-15 22:09:36 +0000
commit4a9e34c14867430141c1e510847df0ec91060a5d (patch)
tree84fe7807595642f4469d98c0a2d7d4f691a52887 /networking/udhcp/options.h
parenta1fece2c70898a1180f0506df6695e3077510731 (diff)
downloadbusybox-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.h2
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);