diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-10-02 14:41:37 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-10-02 14:41:37 +0200 |
commit | 28a10f84cbc3635e59bff348cb1715859dfacade (patch) | |
tree | c39b3c3d706d860d1fbdef4745520ab1b8c94dbe /nest/rt-attr.c | |
parent | 70c5780535fa3bd2360e8208f9273ac6d1741107 (diff) |
Some fixes in filter code.
Thanks to Sergey Popovich for original patches.
Diffstat (limited to 'nest/rt-attr.c')
-rw-r--r-- | nest/rt-attr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c index 6aed318b..3f79ee59 100644 --- a/nest/rt-attr.c +++ b/nest/rt-attr.c @@ -366,8 +366,7 @@ ea_same(ea_list *x, ea_list *y) if (a->id != b->id || a->flags != b->flags || a->type != b->type || - ((a->type & EAF_EMBEDDED) ? a->u.data != b->u.data : - (a->u.ptr->length != b->u.ptr->length || memcmp(a->u.ptr->data, b->u.ptr->data, a->u.ptr->length)))) + ((a->type & EAF_EMBEDDED) ? a->u.data != b->u.data : !adata_same(a->u.ptr, b->u.ptr))) return 0; } return 1; |