Changeset 2957:69b5f082b067 for attach.c

Show
Ignore:
Timestamp:
2002-09-09 12:24:44 (6 years ago)
Author:
Michael Elkins <me@…>
Branch:
mutt-1-4-stable
Message:

[STABLE] Fixing #1330.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • attach.c

    r2947 r2957  
    675675    close (out); 
    676676 
    677   if (rv == 0 || mutt_wait_filter (thepid) != 0 || option (OPTWAITKEY)) 
     677  /* 
     678   * check for error exit from child process 
     679   */ 
     680  if (mutt_wait_filter (thepid) != 0) 
     681    rv = 0; 
     682 
     683  if (rv == 0 || option (OPTWAITKEY)) 
    678684    mutt_any_key_to_continue (NULL); 
    679685  return rv;