1
0

Fixed an ifndef in crypt.h.

This commit is contained in:
Alexander Andreev 2024-03-22 03:24:01 +04:00
parent 20c99d0540
commit b233d8bc43
Signed by: Arav
GPG Key ID: 25969B23DCB5CA34

View File

@ -1,5 +1,5 @@
#ifndef _CRYPTO_H_
#define _CRYPTO_H_
#ifndef _CRYPT_H_
#define _CRYPT_H_
#include <stdbool.h>
@ -31,4 +31,4 @@ typedef struct crypt_session_t {
int crypt_session_init(crypt_session_t *s, crypt_key_t *own, crypt_key_t *remote, bool dirClient);
#endif /* _CRYPTO_H_ */
#endif /* _CRYPT_H_ */