- remove an unnecessary backslash
- put variable in same preprocessor scope
- move prototype to where it's needed
goto fail;
/* check for READ-ONLY notification */
- if (!ascii_strncasecmp (imap_get_qualifier (idata->buf), "[READ-ONLY]", 11) \
- && !mutt_bit_isset (idata->capabilities, ACL))
+ if (!ascii_strncasecmp(imap_get_qualifier(idata->buf), "[READ-ONLY]", 11) &&
+ !mutt_bit_isset(idata->capabilities, ACL))
{
mutt_debug (2, "Mailbox is read-only.\n");
ctx->readonly = 1;
static iconv_t charset_from_utf8 = (iconv_t)(-1);
#endif
+#ifndef HAVE_WC_FUNCS
+static size_t utf8rtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *_ps);
+#endif
+
void mutt_set_charset (char *charset)
{
char buffer[STRING];
FILE *fp;
X509 *cert = NULL;
X509_STORE *store;
- char buf[STRING];
int rv = 1;
+#ifdef DEBUG
+ char buf[STRING];
+#endif
mutt_debug (2, "ssl_load_certificates: loading trusted certificates\n");
store = SSL_CTX_get_cert_store (ctx);