summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ad44a98)
raw | patch | inline | side by side (parent: ad44a98)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 16 Feb 2009 12:26:25 +0000 (13:26 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 16 Feb 2009 12:26:25 +0000 (13:26 +0100) |
src/filter_chain.c | patch | blob | history |
diff --git a/src/filter_chain.c b/src/filter_chain.c
index 4c324a80a54a3a76a2706f604fe95bccaacbb1bc..e7f51d880f97bd97e2bb2c3327af281babb6fe69 100644 (file)
--- a/src/filter_chain.c
+++ b/src/filter_chain.c
/* N. B.: rule->matches may be NULL. */
for (match = rule->matches; match != NULL; match = match->next)
{
+ /* FIXME: Pass the meta-data to match targets here (when implemented). */
status = (*match->proc.match) (ds, vl, /* meta = */ NULL,
&match->user_data);
if (status < 0)
{
/* If we get here, all matches have matched the value. Execute the
* target. */
+ /* FIXME: Pass the meta-data to match targets here (when implemented). */
status = (*target->proc.invoke) (ds, vl, /* meta = */ NULL,
&target->user_data);
if (status < 0)
{
/* If we get here, all matches have matched the value. Execute the
* target. */
+ /* FIXME: Pass the meta-data to match targets here (when implemented). */
status = (*target->proc.invoke) (ds, vl, /* meta = */ NULL,
&target->user_data);
if (status < 0)
* matches match. */
int fc_default_action (const data_set_t *ds, value_list_t *vl) /* {{{ */
{
+ /* FIXME: Pass the meta-data to match targets here (when implemented). */
return (fc_bit_write_invoke (ds, vl,
/* meta = */ NULL, /* user_data = */ NULL));
} /* }}} int fc_default_action */