1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 14:57:46 +02:00

Add note about logs not being encrypted

This commit is contained in:
Jfreegman 2015-10-22 19:55:48 -04:00
parent 6b97df2615
commit 7af9327b37
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

View File

@ -370,9 +370,9 @@ void cmd_log(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX
if (argc == 0) { if (argc == 0) {
if (log->log_on) if (log->log_on)
msg = "Logging for this window is ON. Type \"/log off\" to disable."; msg = "Logging for this window is ON; type \"/log off\" to disable. (Logs are not encrypted)";
else else
msg = "Logging for this window is OFF. Type \"/log on\" to enable."; msg = "Logging for this window is OFF; type \"/log on\" to enable.";
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, msg); line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, msg);
return; return;