From: Mark Wooding Date: Thu, 26 May 2016 08:26:09 +0000 (+0100) Subject: server/tripe.h: Don't say `struct bulkcrypto' where we don't have to. X-Git-Tag: 1.0.0pre19~11 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/tripe/commitdiff_plain/d8b106a3c886e95f1ba58a989347be984aa7682e?ds=sidebyside server/tripe.h: Don't say `struct bulkcrypto' where we don't have to. --- 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 ---------------------------------------------------*/