safe_fclose -> m_fclose, and is now inlined.
[apps/madmutt.git] / imap / imap.c
index c214ddf..e5cf4bf 100644 (file)
@@ -1621,7 +1621,7 @@ static int _imap_check_mailbox (CONTEXT* ctx,
 static int imap_commit_message (MESSAGE* msg, CONTEXT* ctx) {
   int r = 0;
 
-  if ((r = safe_fclose (&msg->fp)) == 0)
+  if ((r = m_fclose(&msg->fp)) == 0)
     r = imap_append_message (ctx, msg);
   return (r);
 }