diff options
author | Samuel Lidén Borell <samuel@slbdata.se> | 2010-08-27 11:32:26 +0200 |
---|---|---|
committer | Samuel Lidén Borell <samuel@slbdata.se> | 2010-08-27 11:32:26 +0200 |
commit | 6188d999593d40674cb49cf5ed304c3aa7dcdbb2 (patch) | |
tree | 45e2a212c6a806cc9ccba97a646e56331a2f9f68 | |
parent | bccdab43af8ee2ffb491b2c5685a45d7c663dee3 (diff) | |
download | fishlim-6188d999593d40674cb49cf5ed304c3aa7dcdbb2.tar.gz fishlim-6188d999593d40674cb49cf5ed304c3aa7dcdbb2.tar.bz2 fishlim-6188d999593d40674cb49cf5ed304c3aa7dcdbb2.zip |
Silence some debugging output
-rw-r--r-- | keystore.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -74,11 +74,9 @@ char *keystore_get_key(const char *nick) { if (strncmp(value, "+OK ", 4) != 0) { // Key is stored in plaintext - g_warning("plaintext key: %s", value); return import_glib_string(value); } else { // Key is encrypted - g_warning("encrypted key: %s", value+4); const char *encrypted = value+4; const char *password = get_keystore_password(); char *decrypted = fish_decrypt(password, strlen(password), encrypted); |