Simon Horman <[EMAIL PROTECTED]> wrote:
>
> @@ -269,9 +269,12 @@ struct xt_table_info
>        unsigned int underflow[NF_INET_NUMHOOKS];
> 
>        /* ipt_entry tables: one per CPU */
> -       char *entries[NR_CPUS];
> +       /* Note : this field MUST be the last one, see XT_TABLE_INFO_SZ */
> +       char *entries[1];

Just do

        char *entries[];

Not only is it ISO C99, but the compiler will die if it's not at
the end.

Actually I haven't read the rest of the patch, so scratch this
comment if you really need to have one entry there for some reason :)

Cheers,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to