From 79bac33a400cbf39504fdaa4a52fc1a04985a957 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Thu, 22 Nov 2012 18:12:47 +0000 Subject: [PATCH] Remove requirement for E --- test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.c b/test.c index 65002c9..e710e0c 100644 --- a/test.c +++ b/test.c @@ -514,7 +514,8 @@ task_template_t *task_template_compile(const char *file, const char *dir) { goto success; } else if (!strcmp(template->proceduretype, "-execute")) { if (!template->executeflags) { - con_err("template compile error: %s missing `E:` tag (use `$null` for exclude)\n", file); + /* default to $null */ + template->executeflags = util_strdup("$null"); goto failure; } if (!template->comparematch) { -- 2.39.2