summaryrefslogtreecommitdiff
path: root/umac.c
diff options
context:
space:
mode:
Diffstat (limited to 'umac.c')
-rw-r--r--umac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/umac.c b/umac.c
index 0567c37f9..fb66b8097 100644
--- a/umac.c
+++ b/umac.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: umac.c,v 1.4 2011/10/19 10:39:48 djm Exp $ */ 1/* $OpenBSD: umac.c,v 1.5 2013/05/17 00:13:14 djm Exp $ */
2/* ----------------------------------------------------------------------- 2/* -----------------------------------------------------------------------
3 * 3 *
4 * umac.c -- C Implementation UMAC Message Authentication 4 * umac.c -- C Implementation UMAC Message Authentication
@@ -1209,7 +1209,7 @@ int umac_delete(struct umac_ctx *ctx)
1209 if (ctx) { 1209 if (ctx) {
1210 if (ALLOC_BOUNDARY) 1210 if (ALLOC_BOUNDARY)
1211 ctx = (struct umac_ctx *)ctx->free_ptr; 1211 ctx = (struct umac_ctx *)ctx->free_ptr;
1212 xfree(ctx); 1212 free(ctx);
1213 } 1213 }
1214 return (1); 1214 return (1);
1215} 1215}