jcs's openbsd hax
openbsd

Rename struct umac_ctx to umac128_ctx too. In portable some linkers complain about two symbols with the same name having differing sizes. ok djm@

dtucker 8d4c5dd7 6af76811

+2 -1
+2 -1
usr.bin/ssh/umac128.c
··· 1 - /* $OpenBSD: umac128.c,v 1.1 2017/12/12 15:06:12 naddy Exp $ */ 1 + /* $OpenBSD: umac128.c,v 1.2 2018/02/08 04:12:32 dtucker Exp $ */ 2 2 3 3 #define UMAC_OUTPUT_LEN 16 4 4 #define umac_new umac128_new 5 5 #define umac_update umac128_update 6 6 #define umac_final umac128_final 7 7 #define umac_delete umac128_delete 8 + #define umac_ctx umac128_ctx 8 9 9 10 #include "umac.c"