diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2018-02-08 04:12:33 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2018-02-08 04:12:33 +0000 |
commit | b425628641a52856abd2c3e87e147062280b5e7e (patch) | |
tree | 5e4e4f7c5cbedbe5d99a567b223db564b86d80eb /usr.bin/ssh | |
parent | 4b43781e7dde06fcda56873f63a47d7adbe5c5ac (diff) |
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@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/umac128.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/umac128.c b/usr.bin/ssh/umac128.c index af3bd9d3fc1..f7179250626 100644 --- a/usr.bin/ssh/umac128.c +++ b/usr.bin/ssh/umac128.c @@ -1,9 +1,10 @@ -/* $OpenBSD: umac128.c,v 1.1 2017/12/12 15:06:12 naddy Exp $ */ +/* $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_ctx umac128_ctx #include "umac.c" |