From: Ted Lemon Date: Sat, 31 Jul 1999 17:56:09 +0000 (+0000) Subject: - Fix up calls to evaluate_boolean_expression. X-Git-Tag: V3-BETA-1-PATCH-2~5^2~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc2c6afb165dfe4d161b5e9cc585578812bcfd88;p=thirdparty%2Fdhcp.git - Fix up calls to evaluate_boolean_expression. --- diff --git a/common/execute.c b/common/execute.c index 64cbf2723..2930102b6 100644 --- a/common/execute.c +++ b/common/execute.c @@ -22,7 +22,7 @@ #ifndef lint static char copyright[] = -"$Id: execute.c,v 1.15 1999/07/19 15:34:33 mellon Exp $ Copyright (c) 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; +"$Id: execute.c,v 1.16 1999/07/31 17:56:09 mellon Exp $ Copyright (c) 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -87,8 +87,8 @@ int execute_statements (packet, lease, in_options, out_options, statements) case if_statement: status = evaluate_boolean_expression - (&result, packet, - in_options, lease, r -> data.ie.expr); + (&result, packet, lease, + in_options, out_options, r -> data.ie.expr); #if defined (DEBUG_EXPRESSIONS) log_debug ("exec: if %s", (status @@ -106,8 +106,8 @@ int execute_statements (packet, lease, in_options, out_options, statements) case eval_statement: status = evaluate_boolean_expression - (&result, - packet, in_options, lease, r -> data.eval); + (&result, packet, lease, + in_options, out_options, r -> data.eval); #if defined (DEBUG_EXPRESSIONS) log_debug ("exec: evaluate: %s", (status