From d8b106a3c886e95f1ba58a989347be984aa7682e Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 26 May 2016 09:26:09 +0100 Subject: [PATCH] server/tripe.h: Don't say `struct bulkcrypto' where we don't have to. Organization: Straylight/Edgeware From: Mark Wooding --- server/tripe.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/tripe.h b/server/tripe.h index a967ae6d..86d3779e 100644 --- a/server/tripe.h +++ b/server/tripe.h @@ -176,7 +176,7 @@ typedef struct bulkcrypto { struct algswitch { const gchash *h; /* Hash function */ const gccipher *mgf; /* Mask-generation function */ - const struct bulkcrypto *bulk; /* Bulk crypto transformation */ + const bulkcrypto *bulk; /* Bulk crypto transformation */ const gccipher *c; /* Symmetric encryption scheme */ const gcmac *m; /* Message authentication code */ const gccipher *b; /* Block cipher */ @@ -210,7 +210,7 @@ typedef struct knode { #define HASH_STRING(h, s) GH_HASH((h), (s), sizeof(s)) -extern const struct bulkcrypto bulktab[]; +extern const bulkcrypto bulktab[]; /*----- Data structures ---------------------------------------------------*/ -- [mdw]