summaryrefslogtreecommitdiffstats
path: root/include/rule.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rule.h')
-rw-r--r--include/rule.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/rule.h b/include/rule.h
index ee881b9c..4c8cab13 100644
--- a/include/rule.h
+++ b/include/rule.h
@@ -174,14 +174,11 @@ enum chain_flags {
* struct prio_spec - extendend priority specification for mixed
* textual/numerical parsing.
*
- * @str: name of the standard priority value
- * @num: Numerical value. This MUST contain the parsed value of str after
- * evaluation.
+ * @expr: expr of the standard priority value
*/
struct prio_spec {
- const char *str;
- int num;
struct location loc;
+ struct expr *expr;
};
/**