Don't typedef the same struct in two header files.
Some (older?) versions of GCC don't like this.
This commit is contained in:
parent
5e00a24e1f
commit
6aa864baa6
1 changed files with 2 additions and 2 deletions
|
@ -22,11 +22,11 @@
|
||||||
|
|
||||||
#include <openssl/evp.h>
|
#include <openssl/evp.h>
|
||||||
|
|
||||||
typedef struct digest {
|
struct digest {
|
||||||
const EVP_MD *digest;
|
const EVP_MD *digest;
|
||||||
int maclength;
|
int maclength;
|
||||||
int keylength;
|
int keylength;
|
||||||
char *key;
|
char *key;
|
||||||
} digest_t;
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue