ratox

FIFO based tox client
git clone git://git.2f30.org/ratox
Log | Files | Refs | README | LICENSE

commit 6a7643664dcf0c3cd87bc2d58e05b413cbc1851e
parent b3c0edb57d106c2d9d1652d6aa08023d154cf4c3
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:
Mratox.c | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/ratox.c b/ratox.c @@ -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",