2.4.36-stable kernel tree
リビジョン | d1b94f8d401c705c0ce4b4764e728ba132ca0509 (tree) |
---|---|
日時 | 2007-02-25 16:57:36 |
作者 | Willy Tarreau <w@1wt....> |
コミッター | Willy Tarreau |
[PATCH] fix missing parenthesis in unused macro in ip_nat_standalone
The bug found by Mariusz Kozlowski affects an unused macro. However,
I prefer to fix the macro than removing it because external patches
might be relying on it.
@@ -47,7 +47,7 @@ | ||
47 | 47 | : ((hooknum) == NF_IP_PRE_ROUTING ? "PRE_ROUTING" \ |
48 | 48 | : ((hooknum) == NF_IP_LOCAL_OUT ? "LOCAL_OUT" \ |
49 | 49 | : ((hooknum) == NF_IP_LOCAL_IN ? "LOCAL_IN" \ |
50 | - : "*ERROR*"))) | |
50 | + : "*ERROR*")))) | |
51 | 51 | |
52 | 52 | static inline int call_expect(struct ip_conntrack *master, |
53 | 53 | struct sk_buff **pskb, |