Don't typedef the same struct in two header files.

Some (older?) versions of GCC don't like this.
This commit is contained in:
Guus Sliepen 2013-08-13 20:40:40 +02:00
parent 5e00a24e1f
commit 6aa864baa6

View file

@ -22,11 +22,11 @@
#include <openssl/evp.h>
typedef struct digest {
struct digest {
const EVP_MD *digest;
int maclength;
int keylength;
char *key;
} digest_t;
};
#endif