Changeset 5137:0c47f7b06158 for pgpkey.c
Legend:
- Unmodified
- Added
- Removed
-
pgpkey.c
r5010 r5137 122 122 static const char *pgp_entry_fmt (char *dest, 123 123 size_t destlen, 124 size_t col, 124 125 char op, 125 126 const char *src, … … 278 279 279 280 if (optional) 280 mutt_FormatString (dest, destlen, ifstring, mutt_attach_fmt, data, 0);281 mutt_FormatString (dest, destlen, col, ifstring, mutt_attach_fmt, data, 0); 281 282 else if (flags & M_FORMAT_OPTIONAL) 282 mutt_FormatString (dest, destlen, elsestring, mutt_attach_fmt, data, 0);283 mutt_FormatString (dest, destlen, col, elsestring, mutt_attach_fmt, data, 0); 283 284 return (src); 284 285 } … … 292 293 entry.num = num + 1; 293 294 294 mutt_FormatString (s, l, NONULL (PgpEntryFormat), pgp_entry_fmt,295 mutt_FormatString (s, l, 0, NONULL (PgpEntryFormat), pgp_entry_fmt, 295 296 (unsigned long) &entry, M_FORMAT_ARROWCURSOR); 296 297 }
