commit 189829e2c20a91cc869b96316dce1f549730977f
parent f268c3466a04a491bc9061361a7c8887e3d5a95d
Author: Ricardo Mones <ricardo@mones.org>
Date: Fri, 25 Mar 2016 01:23:18 +0100
Remove dead code when the #ifndef is true
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/password.c b/src/password.c
@@ -549,9 +549,9 @@ gchar *password_encrypt(const gchar *password,
encryption_passphrase = master_passphrase();
return password_encrypt_real(password, encryption_passphrase);
-#endif
-
+#else
return password_encrypt_old(password);
+#endif
}
gchar *password_decrypt(const gchar *password,