fixes in the sidebar format, was completely braindead.
[apps/madmutt.git] / lib-crypt / pgpinvoke.c
index 10878d3..a8f0bb8 100644 (file)
@@ -108,11 +108,9 @@ _mutt_fmt_pgp_command(char *dest, ssize_t destlen,
   }
 
   if (optional)
-    mutt_FormatString (dest, destlen, ifstring, _mutt_fmt_pgp_command, data,
-                       0);
+    m_strformat(dest, destlen, ifstring, _mutt_fmt_pgp_command, data, 0);
   else if (flags & M_FORMAT_OPTIONAL)
-    mutt_FormatString (dest, destlen, elsestring, _mutt_fmt_pgp_command, data,
-                       0);
+    m_strformat(dest, destlen, elsestring, _mutt_fmt_pgp_command, data, 0);
 
   return (src);
 }
@@ -121,7 +119,7 @@ static void
 mutt_pgp_command(char *d, ssize_t dlen, struct pgp_command_context *cctx,
                  const char *fmt)
 {
-  mutt_FormatString (d, dlen, NONULL (fmt), _mutt_fmt_pgp_command,
+  m_strformat (d, dlen, NONULL (fmt), _mutt_fmt_pgp_command,
                      (unsigned long) cctx, 0);
 }