diff options
author | Russ Dill <Russ.Dill@asu.edu> | 2003-12-15 22:09:36 +0000 |
---|---|---|
committer | Russ Dill <Russ.Dill@asu.edu> | 2003-12-15 22:09:36 +0000 |
commit | 4a9e34c14867430141c1e510847df0ec91060a5d (patch) | |
tree | 84fe7807595642f4469d98c0a2d7d4f691a52887 /networking/udhcp/files.c | |
parent | a1fece2c70898a1180f0506df6695e3077510731 (diff) | |
download | busybox-w32-4a9e34c14867430141c1e510847df0ec91060a5d.tar.gz busybox-w32-4a9e34c14867430141c1e510847df0ec91060a5d.tar.bz2 busybox-w32-4a9e34c14867430141c1e510847df0ec91060a5d.zip |
options is a pretty common symbol, bad idea to use as a global in udhcp when compiling into busybox
Diffstat (limited to 'networking/udhcp/files.c')
-rw-r--r-- | networking/udhcp/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c index 3d0344b09..20761a585 100644 --- a/networking/udhcp/files.c +++ b/networking/udhcp/files.c | |||
@@ -82,7 +82,7 @@ static int read_opt(const char *const_line, void *arg) | |||
82 | 82 | ||
83 | if ((opt = strtok(strcpy(line, const_line), " \t="))) { | 83 | if ((opt = strtok(strcpy(line, const_line), " \t="))) { |
84 | 84 | ||
85 | for (option = options; option->code; option++) | 85 | for (option = dhcp_options; option->code; option++) |
86 | if (!strcasecmp(option->name, opt)) | 86 | if (!strcasecmp(option->name, opt)) |
87 | break; | 87 | break; |
88 | 88 | ||