Summary: Fix LINT build. The names of the new AES modes were not

correctly used under the REGRESSION kernel option.
This commit is contained in:
George V. Neville-Neil 2015-07-10 02:23:50 +00:00
parent 4afafe0c86
commit 0b75d21e18
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285347

View File

@ -989,9 +989,9 @@ esp_output_cb(struct cryptop *crp)
case CRYPTO_SHA2_512_HMAC:
alen = esph->hashsize/2;
break;
case CRYPTO_AES_128_GMAC:
case CRYPTO_AES_192_GMAC:
case CRYPTO_AES_256_GMAC:
case CRYPTO_AES_128_NIST_GMAC:
case CRYPTO_AES_192_NIST_GMAC:
case CRYPTO_AES_256_NIST_GMAC:
alen = esph->hashsize;
break;
default: