summaryrefslogtreecommitdiff
path: root/crypto/authencesn.c
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2020-02-25 20:59:13 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2020-03-06 12:28:22 +1100
commitd7e7a13938300a066feff29e96c41045c74992e6 (patch)
treed23d6e36675506366006825be563d1ab3373072b /crypto/authencesn.c
parent29c8311588108311c39b03bbe15b5a0e7c028896 (diff)
downloadlinux-crypto-d7e7a13938300a066feff29e96c41045c74992e6.tar.gz
linux-crypto-d7e7a13938300a066feff29e96c41045c74992e6.zip
crypto: authencesn - fix weird comma-terminated line
Fix a weird case where a line was terminated by a comma rather than a semicolon, causing the statement to be continued on the next line. Fortunately the code still behaved as intended, though. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/authencesn.c')
-rw-r--r--crypto/authencesn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/authencesn.c b/crypto/authencesn.c
index 58900814..149b70df 100644
--- a/crypto/authencesn.c
+++ b/crypto/authencesn.c
@@ -458,7 +458,7 @@ static int crypto_authenc_esn_create(struct crypto_template *tmpl,
inst->alg.encrypt = crypto_authenc_esn_encrypt;
inst->alg.decrypt = crypto_authenc_esn_decrypt;
- inst->free = crypto_authenc_esn_free,
+ inst->free = crypto_authenc_esn_free;
err = aead_register_instance(tmpl, inst);
if (err) {