]> granicus.if.org Git - neomutt/commitdiff
Deprecation: changed called function in mutt_sasl.c
authorAnton Rieger <seishinryohosha@jikken.de>
Thu, 12 Oct 2017 20:04:48 +0000 (22:04 +0200)
committerRichard Russon <rich@flatcap.org>
Fri, 13 Oct 2017 10:15:44 +0000 (11:15 +0100)
* mutt_sasl_done()

mutt_sasl.c

index c7e22e472b98a7a8f8acf4338f349f0cb3c62051..ef92ea8a38d34db43611d85f8e09cc68c3663396 100644 (file)
@@ -631,7 +631,13 @@ void mutt_sasl_setup_conn(struct Connection *conn, sasl_conn_t *saslconn)
   conn->conn_poll = mutt_sasl_conn_poll;
 }
 
+/*
+ * mutt_sasl_done - Invoke when processing is complete.
+ * This is a cleanup function, used to free all memory used by the library. 
+ * Invoke when processing is complete.
+ */
 void mutt_sasl_done(void)
 {
-  sasl_done();
+  /* As we never use the server-side, the silently ignore the return value */
+  sasl_client_done();
 }