summaryrefslogtreecommitdiff
path: root/testing/toxic/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'testing/toxic/main.c')
-rw-r--r--testing/toxic/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/toxic/main.c b/testing/toxic/main.c
index b2310c80..d4579571 100644
--- a/testing/toxic/main.c
+++ b/testing/toxic/main.c
@@ -22,7 +22,7 @@ extern int add_req(uint8_t *public_key); // XXX
22 22
23/* Holds status of chat windows */ 23/* Holds status of chat windows */
24char WINDOW_STATUS[MAX_WINDOW_SLOTS]; 24char WINDOW_STATUS[MAX_WINDOW_SLOTS];
25#define TOXICVER "0.1.0" //Will be moved to a -D flag later 25//#define TOXICVER "0.1.0" //Will be moved to a -D flag later
26 26
27static ToxWindow windows[MAX_WINDOW_SLOTS]; 27static ToxWindow windows[MAX_WINDOW_SLOTS];
28static ToxWindow* prompt; 28static ToxWindow* prompt;
@@ -37,7 +37,7 @@ void on_request(uint8_t *public_key, uint8_t *data, uint16_t length)
37 wprintw(prompt->window, "\nFriend request from:\n"); 37 wprintw(prompt->window, "\nFriend request from:\n");
38 38
39 int i; 39 int i;
40 for (i = 0; i < 32; ++i) { 40 for (i = 0; i < KEY_SIZE_BYTES; ++i) {
41 wprintw(prompt->window, "%02x", public_key[i] & 0xff); 41 wprintw(prompt->window, "%02x", public_key[i] & 0xff);
42 } 42 }
43 43