Jan Engelhardt
bd414ee605
netfilter: xtables: change matches to return error code
The following semantic patch does part of the transformation:
// <smpl>
@ rule1 @
struct xt_match ops;
identifier check;
@@
ops.checkentry = check;
@@
identifier rule1.check;
@@
check(...) { <...
-return true;
+return 0;
...> }
@@
identifier rule1.check;
@@
check(...) { <...
-return false;
+return -EINVAL;
...> }
// </smpl>
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
2010-03-25 16:55:24 +01:00
..
2010-03-25 16:55:24 +01:00
2010-03-16 21:23:19 -07:00
2009-11-29 16:55:45 -08:00
2010-03-25 16:00:29 +01:00
2010-03-16 21:23:19 -07:00
2010-03-25 16:00:29 +01:00
2009-11-05 22:34:16 -08:00
2010-03-25 16:00:29 +01:00
2010-03-25 16:00:29 +01:00
2009-02-24 23:18:28 -08:00
2008-09-08 16:19:58 -07:00
2008-06-11 21:00:38 -07:00
2010-03-16 21:23:19 -07:00
2010-03-25 16:00:29 +01:00
2010-02-28 00:49:38 -08:00
2008-06-11 21:00:38 -07:00
2010-02-28 00:49:38 -08:00
2010-02-28 00:49:47 -08:00
2010-03-07 17:04:49 -08:00
2009-06-26 13:51:32 -07:00
2010-03-03 01:23:22 -08:00
2010-02-28 00:48:45 -08:00