[dpdk-dev] [PATCH] ipsec-secgw: fix anonymous union initialization

2016-04-08 Thread Thomas Monjalon
> In icc 14.0, compilation was broken: > > examples/ipsec-secgw/sa.c(212): error: a designator for an anonymous > union member can only appear within braces corresponding to that anonymous > union > .cipher = { RTE_CRYPTO_CIPHER_OP_ENCRYPT, RTE_CRYPTO_CIPHER_AES_CBC, > ^ > > The

[dpdk-dev] [PATCH] ipsec-secgw: fix anonymous union initialization

2016-04-08 Thread Pablo de Lara
In icc 14.0, compilation was broken: examples/ipsec-secgw/sa.c(212): error: a designator for an anonymous union member can only appear within braces corresponding to that anonymous union .cipher = { RTE_CRYPTO_CIPHER_OP_ENCRYPT, RTE_CRYPTO_CIPHER_AES_CBC, ^ The member in anonymou