Andreas Krennmair:
[apps/madmutt.git] / pop_lib.c
index 5408348..88b249d 100644 (file)
--- a/pop_lib.c
+++ b/pop_lib.c
@@ -270,7 +270,7 @@ int pop_open_connection (POP_DATA *pop_data)
     return -2;
   }
 
-#if defined(USE_SSL) && !defined(USE_NSS)
+#if (defined(USE_SSL) || defined(USE_GNUTLS)) && !defined(USE_NSS)
   /* Attempt STLS if available and desired. */
   if (pop_data->cmd_stls && !pop_data->conn->ssf)
   {
@@ -295,7 +295,11 @@ int pop_open_connection (POP_DATA *pop_data)
        mutt_error ("%s", pop_data->err_msg);
        mutt_sleep (2);
       }
+#ifdef USE_SSL
       else if (mutt_ssl_starttls (pop_data->conn))
+#elif USE_GNUTLS
+      else if (mutt_gnutls_starttls (pop_data->conn))
+#endif
       {
        mutt_error (_("Could not negotiate TLS connection"));
        mutt_sleep (2);