commit | a724d49b6e6ad0501579766049adb0b79e6b6cb3 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Jan 26 16:48:20 2010 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Jan 26 16:48:20 2010 +0100 |
tree | 1fb9b16b6e0ca72e91be4414415f9ac02ffffdfc | |
parent | 7aabd11cecea3f0ed0fcb1c69a85f9a54dd171ec [diff] |
[BUG] patterns: copy-paste typo in type conversion arguments
diff --git a/src/pattern.c b/src/pattern.c index 4270cde..c593404 100644 --- a/src/pattern.c +++ b/src/pattern.c
@@ -471,7 +471,7 @@ return NULL; p->type = conv_expr->conv->in_type; - if (!conv_expr->conv->process(conv_expr->arg, expr->arg_len, &p->data)) + if (!conv_expr->conv->process(conv_expr->arg, conv_expr->arg_len, &p->data)) return NULL; p->type = conv_expr->conv->out_type;