Changeset 5137:0c47f7b06158 for pgpinvoke.c
- Timestamp:
- 2007-04-11 22:36:24 (21 months ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
pgpinvoke.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pgpinvoke.c
r4343 r5137 59 59 const char *_mutt_fmt_pgp_command (char *dest, 60 60 size_t destlen, 61 size_t col, 61 62 char op, 62 63 const char *src, … … 140 141 141 142 if (optional) 142 mutt_FormatString (dest, destlen, ifstring, _mutt_fmt_pgp_command, data, 0);143 mutt_FormatString (dest, destlen, col, ifstring, _mutt_fmt_pgp_command, data, 0); 143 144 else if (flags & M_FORMAT_OPTIONAL) 144 mutt_FormatString (dest, destlen, elsestring, _mutt_fmt_pgp_command, data, 0);145 mutt_FormatString (dest, destlen, col, elsestring, _mutt_fmt_pgp_command, data, 0); 145 146 146 147 return (src); … … 149 150 void mutt_pgp_command (char *d, size_t dlen, struct pgp_command_context *cctx, const char *fmt) 150 151 { 151 mutt_FormatString (d, dlen, NONULL (fmt), _mutt_fmt_pgp_command, (unsigned long) cctx, 0);152 mutt_FormatString (d, dlen, 0, NONULL (fmt), _mutt_fmt_pgp_command, (unsigned long) cctx, 0); 152 153 dprint (2, (debugfile, "mutt_pgp_command: %s\n", d)); 153 154 }
