netfilter: xtables: mark initial tables constant
[safe/jmp/linux-2.6] / net / ipv4 / netfilter / iptable_raw.c
index 494784c..993edc2 100644 (file)
@@ -9,7 +9,7 @@
 
 #define RAW_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_OUT))
 
-static struct
+static const struct
 {
        struct ipt_replace repl;
        struct ipt_standard entries[2];
@@ -36,7 +36,7 @@ static struct
        .term = IPT_ERROR_INIT,                 /* ERROR */
 };
 
-static struct xt_table packet_raw = {
+static const struct xt_table packet_raw = {
        .name = "raw",
        .valid_hooks =  RAW_VALID_HOOKS,
        .me = THIS_MODULE,