From 4a9e34c14867430141c1e510847df0ec91060a5d Mon Sep 17 00:00:00 2001 From: Russ Dill Date: Mon, 15 Dec 2003 22:09:36 +0000 Subject: options is a pretty common symbol, bad idea to use as a global in udhcp when compiling into busybox --- networking/udhcp/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'networking/udhcp/files.c') 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) 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; -- cgit v1.2.3