From de4e43d0c5cfd725b79edb2dabb49f21a87582bc Mon Sep 17 00:00:00 2001 From: mellon Date: Mon, 27 Oct 2003 21:08:25 +0000 Subject: [PATCH] - Add declarations for lhs_context and rhs_context. For some reason these were missing from the diff between 3.0.1rc11 and 3.0.1rc12, so the previous commit didn't compile. :'( --- dist/dhcp/common/parse.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dist/dhcp/common/parse.c b/dist/dhcp/common/parse.c index 3e3731e67d94..5dcd2a7c22ad 100644 --- a/dist/dhcp/common/parse.c +++ b/dist/dhcp/common/parse.c @@ -43,7 +43,7 @@ #ifndef lint static char copyright[] = -"$Id: parse.c,v 1.6 2003/10/27 20:16:09 mellon Exp $ Copyright (c) 1995-2002 The Internet Software Consortium. All rights reserved.\n"; +"$Id: parse.c,v 1.7 2003/10/27 21:08:25 mellon Exp $ Copyright (c) 1995-2002 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -3915,6 +3915,9 @@ int parse_expression (expr, cfile, lose, context, plhs, binop) struct expression *rhs = (struct expression *)0, *tmp; struct expression *lhs = (struct expression *)0; enum expr_op next_op; + enum expression_context + lhs_context = context_any, + rhs_context = context_any; /* Consume the left hand side we were passed. */ if (plhs) {