commit | 4a9e34c14867430141c1e510847df0ec91060a5d | [log] [tgz] |
---|---|---|
author | Russ Dill <Russ.Dill@asu.edu> | Mon Dec 15 22:09:36 2003 +0000 |
committer | Russ Dill <Russ.Dill@asu.edu> | Mon Dec 15 22:09:36 2003 +0000 |
tree | 84fe7807595642f4469d98c0a2d7d4f691a52887 | |
parent | a1fece2c70898a1180f0506df6695e3077510731 [diff] [blame] |
options is a pretty common symbol, bad idea to use as a global in udhcp when compiling into busybox
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c index 3d0344b..20761a5 100644 --- a/networking/udhcp/files.c +++ b/networking/udhcp/files.c
@@ -82,7 +82,7 @@ if ((opt = strtok(strcpy(line, const_line), " \t="))) { - for (option = options; option->code; option++) + for (option = dhcp_options; option->code; option++) if (!strcasecmp(option->name, opt)) break;