From d9d36c8dd4691459519343b7f29336d4477c5c3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Wed, 23 Jul 2014 07:49:05 +0200 Subject: [PATCH] trigger: update comment --- src/plugins/trigger/trigger.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/trigger/trigger.c b/src/plugins/trigger/trigger.c index b4931c141..8416e0f3f 100644 --- a/src/plugins/trigger/trigger.c +++ b/src/plugins/trigger/trigger.c @@ -706,7 +706,8 @@ trigger_name_valid (const char *name) /* no spaces allowed */ if (strchr (name, ' ')) return 0; - /* no periods allowed since it is saved via wee_config option name */ + + /* no periods allowed */ if (strchr (name, '.')) return 0;