tInform the user if encryption is enabled but the datafile is not encrypted - ratox - FIFO based tox client
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 6a7643664dcf0c3cd87bc2d58e05b413cbc1851e
(DIR) parent b3c0edb57d106c2d9d1652d6aa08023d154cf4c3
(HTM) Author: sin <sin@2f30.org>
Date: Mon, 22 Sep 2014 13:06:55 +0100
Inform the user if encryption is enabled but the datafile is not encrypted
Diffstat:
M ratox.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/ratox.c b/ratox.c
t@@ -607,8 +607,11 @@ dataload(void)
}
if (encryptsave == 1) {
- if (tox_is_data_encrypted(data) == 0)
+ if (tox_is_data_encrypted(data) == 0) {
+ printout("%s is not encrypted, disabling encryption\n",
+ DATAFILE);
encryptsave = 0;
+ }
} else {
if (tox_is_data_encrypted(data) == 1) {
fprintf(stderr, "Unable to load %s, it is encrypted\n",