# HG changeset patch # User Mikael Berthe # Date 1164694499 -3600 # Node ID 4cdf19d9c74eab757b4f6cbf1573cdc13785d9f5 # Parent 5b3ecae91c958cbab83761d87b1aae1aa13fdea3 PGP: Fix a small bug in initialization diff -r 5b3ecae91c95 -r 4cdf19d9c74e mcabber/src/pgp.c --- a/mcabber/src/pgp.c Tue Nov 28 00:00:46 2006 +0100 +++ b/mcabber/src/pgp.c Tue Nov 28 07:14:59 2006 +0100 @@ -55,8 +55,8 @@ // Check for version and OpenPGP protocol support. if (!gpgme_check_version(MIN_GPGME_VERSION)) { - scr_LogPrint(LPRINT_LOGNORM|LPRINT_NOTUTF8, - "GPGME initialization error: %s", gpgme_strerror(err)); + scr_LogPrint(LPRINT_LOGNORM, + "GPGME initialization error: Bad library version"); return -1; }