summaryrefslogtreecommitdiff
path: root/umac128.c
diff options
context:
space:
mode:
Diffstat (limited to 'umac128.c')
-rw-r--r--umac128.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/umac128.c b/umac128.c
index 2d4166a3..f7179250 100644
--- a/umac128.c
+++ b/umac128.c
@@ -1,13 +1,10 @@
-/* In OpenSSH, umac.c is compiled twice, with different #defines set on the
- * command line. Since we don't want to stretch the Android build system, in
- * Android this file is duplicated as umac.c and umac128.c. The latter contains
- * the #defines (that were set in OpenSSH's Makefile) at the top of the
- * file and then #includes umac.c. */
+/* $OpenBSD: umac128.c,v 1.2 2018/02/08 04:12:32 dtucker Exp $ */
-#define UMAC_OUTPUT_LEN 16
-#define umac_new umac128_new
-#define umac_update umac128_update
-#define umac_final umac128_final
-#define umac_delete umac128_delete
+#define UMAC_OUTPUT_LEN 16
+#define umac_new umac128_new
+#define umac_update umac128_update
+#define umac_final umac128_final
+#define umac_delete umac128_delete
+#define umac_ctx umac128_ctx
#include "umac.c"