Changeset 4439:0383a03ba8ae for attach.c
Legend:
- Unmodified
- Added
- Removed
-
attach.c
r4343 r4439 169 169 /* Remove headers by copying out data to another file, then 170 170 * copying the file back */ 171 fseek (fp, b->offset, 0);171 fseeko (fp, b->offset, 0); 172 172 mutt_mktemp (tempfile); 173 173 if ((tfp = safe_fopen (tempfile, "w")) == NULL) … … 772 772 hn->read = 1; 773 773 774 fseek (fp, m->offset, 0);774 fseeko (fp, m->offset, 0); 775 775 if (fgets (buf, sizeof (buf), fp) == NULL) 776 776 return -1; … … 807 807 return (-1); 808 808 } 809 fseek ((s.fpin = fp), m->offset, 0);809 fseeko ((s.fpin = fp), m->offset, 0); 810 810 mutt_decode_attachment (m, &s); 811 811
