[balsa/gtk3] Downgrade a warning



commit 15c845fc1dd71f81312bd99cbcfcba3511429df8
Author: Peter Bloomfield <PeterBloomfield bellsouth net>
Date:   Wed Feb 20 21:23:49 2013 -0500

    Downgrade a warning
    
        * libbalsa/libbalsa-gpgme.c (libbalsa_gpgme_init): use g_message
        instead of g_warning.

 ChangeLog                 |    5 +++++
 libbalsa/libbalsa-gpgme.c |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index b214b90..9b5711b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2013-02-20  Peter Bloomfield
 
+       * libbalsa/libbalsa-gpgme.c (libbalsa_gpgme_init): use g_message
+       instead of g_warning.
+
+2013-02-20  Peter Bloomfield
+
        * configure.in: new option --enable-debug-threads.
        * libbalsa/libbalsa.h: use it to define gdk_threads_enter() to
        detect a sub-thread.
diff --git a/libbalsa/libbalsa-gpgme.c b/libbalsa/libbalsa-gpgme.c
index 6932acb..4d00322 100644
--- a/libbalsa/libbalsa-gpgme.c
+++ b/libbalsa/libbalsa-gpgme.c
@@ -148,7 +148,7 @@ libbalsa_gpgme_init(gpgme_passphrase_cb_t get_passphrase,
        g_message("OpenPGP protocol supported");
        has_proto_openpgp = TRUE;
     } else {
-       g_warning
+       g_message
            ("OpenPGP protocol not supported, basic crypto will not work!");
        has_proto_openpgp = FALSE;
     }
@@ -159,7 +159,7 @@ libbalsa_gpgme_init(gpgme_passphrase_cb_t get_passphrase,
        g_message("CMS (aka S/MIME) protocol supported");
        has_proto_cms = TRUE;
     } else {
-       g_warning("CMS protocol not supported, S/MIME will not work!");
+       g_message("CMS protocol not supported, S/MIME will not work!");
        has_proto_cms = FALSE;
     }
 #else


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]