summaryrefslogtreecommitdiff
path: root/toxcore/friend_requests.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-12-19 02:47:42 +0000
committeriphydf <iphydf@users.noreply.github.com>2016-12-22 10:26:59 +0000
commitce29c8e7ec91d95167b2dea3aee9fd1ae1aac254 (patch)
treea288df55c44e8edf816e6abbde19a70faef73394 /toxcore/friend_requests.h
parent7122d2e862e028a730478d88cd61557fbed16ebf (diff)
Wrap all sodium/nacl functions in crypto_core.c.
Diffstat (limited to 'toxcore/friend_requests.h')
-rw-r--r--toxcore/friend_requests.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/friend_requests.h b/toxcore/friend_requests.h
index 4a9d06de..9fb06d00 100644
--- a/toxcore/friend_requests.h
+++ b/toxcore/friend_requests.h
@@ -42,7 +42,7 @@ typedef struct {
42 42
43#define MAX_RECEIVED_STORED 32 43#define MAX_RECEIVED_STORED 32
44 44
45 uint8_t received_requests[MAX_RECEIVED_STORED][crypto_box_PUBLICKEYBYTES]; 45 uint8_t received_requests[MAX_RECEIVED_STORED][CRYPTO_PUBLIC_KEY_SIZE];
46 uint16_t received_requests_index; 46 uint16_t received_requests_index;
47} Friend_Requests; 47} Friend_Requests;
48 48