Commit 0ded81db 0ded81db7d95f4c5d044cd90227aa2a6e8a952db by Sergey Poznyakoff

Bugfix

1 parent a2de3967
...@@ -43,7 +43,7 @@ mh_comp_draft (char *formfile, char *defformfile, char *draftfile) ...@@ -43,7 +43,7 @@ mh_comp_draft (char *formfile, char *defformfile, char *draftfile)
43 s = mh_expand_name (MHLIBDIR, defformfile, 0); 43 s = mh_expand_name (MHLIBDIR, defformfile, 0);
44 if (access (s, R_OK) == 0) 44 if (access (s, R_OK) == 0)
45 { 45 {
46 if (mh_file_copy (s, draftfile) == 0) 46 if (mh_file_copy (s, draftfile))
47 exit (1); 47 exit (1);
48 } 48 }
49 else 49 else
......