On Saturday 2008-08-02 07:52, Pablo Neira Ayuso wrote: >>> #define XTABLES_VERSION "@PACKAGE_VERSION@" >>> #define XTABLES_API_VERSION(x,y,z) (0x10000*(x) + 0x100*(y) + z) >>> >>> - xt_chainlabel name; >>> + const char *name; >>> >> This is breaking the ABI. You're replacing at field of 32 bytes by one >> of 4 bytes. The API actually remains the same, due to the nature of char[] decaying into char* (and .name is also only used in the registrator); the ABI (indicated by XTABLES_VERSION) changes yes, and that is fine because we moved from 1.4.1 to 1.4.2-rc1. -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html