Skip to content

Commit

Permalink
Summary: Fix LINT build. The names of the new AES modes were not
Browse files Browse the repository at this point in the history
correctly used under the REGRESSION kernel option.
  • Loading branch information
gvnn3 committed Jul 10, 2015
1 parent 0a09d27 commit 4d0b1fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sys/netipsec/xform_esp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4d0b1fe

Please sign in to comment.