[Sysfence-commit] sysfence/parseopt parse.c,1.10,1.11
Status: Alpha
Brought to you by:
emes
|
From: Michal S. <em...@us...> - 2004-05-10 13:58:16
|
Update of /cvsroot/sysfence/sysfence/parseopt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28153 Modified Files: parse.c Log Message: * consistent names in grammar Index: parse.c =================================================================== RCS file: /cvsroot/sysfence/sysfence/parseopt/parse.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- parse.c 27 Feb 2004 11:16:07 -0000 1.10 +++ parse.c 10 May 2004 13:57:52 -0000 1.11 @@ -18,7 +18,7 @@ #include "../exit.h" #include "../xalloc.h" #include "../getstats.h" -#include "../conditions.h" +#include "../expressions.h" #include "parse.h" #include <stdio.h> #include <stdlib.h> @@ -215,7 +215,7 @@ { /* grammar: * - * condition := <atomic> [<op> <expression>] + * expression := <atomic> [<op> <expression>] * | <block_expression> [<op> <expression>] */ #ifdef DEBUG @@ -393,8 +393,8 @@ { /* grammar: * - * ruleset := 'if' [<string>] <block_condition> <rundata> [<logdata>] - * | 'if' [<string>] <block_condition> <logdata> [<rundata>] + * ruleset := 'if' [<string>] <block_expression> <rundata> [<logdata>] + * | 'if' [<string>] <block_expression> <logdata> [<rundata>] */ #ifdef DEBUG |