- 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. :'(
This commit is contained in:
parent
0f26f5c9ea
commit
de4e43d0c5
|
@ -43,7 +43,7 @@
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
static char copyright[] =
|
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 */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include "dhcpd.h"
|
#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 *rhs = (struct expression *)0, *tmp;
|
||||||
struct expression *lhs = (struct expression *)0;
|
struct expression *lhs = (struct expression *)0;
|
||||||
enum expr_op next_op;
|
enum expr_op next_op;
|
||||||
|
enum expression_context
|
||||||
|
lhs_context = context_any,
|
||||||
|
rhs_context = context_any;
|
||||||
|
|
||||||
/* Consume the left hand side we were passed. */
|
/* Consume the left hand side we were passed. */
|
||||||
if (plhs) {
|
if (plhs) {
|
||||||
|
|
Loading…
Reference in New Issue