X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib-crypt%2Fsmime.c;fp=lib-crypt%2Fsmime.c;h=218b442226b6a044e0da9e1e7692eab77be501ff;hb=3bea52e9b3eb7c82ee1e6d5368bfb547a89cdb32;hp=f5700a2ff983a687248eb61b596d32d2bb2bbb0e;hpb=ccf415cc4f84e7bf503f401e1adeb321ca3ae448;p=apps%2Fmadmutt.git diff --git a/lib-crypt/smime.c b/lib-crypt/smime.c index f5700a2..218b442 100644 --- a/lib-crypt/smime.c +++ b/lib-crypt/smime.c @@ -1087,7 +1087,7 @@ int smime_verify_sender (HEADER * h) fpout = m_tempfile (tempfname, sizeof(tempfname), NONULL(Tempdir), NULL); if (!fpout) { - mutt_perror (tempfname); + mutt_perror (_("Can't create temporary file")); return 1; } @@ -1187,7 +1187,7 @@ BODY *smime_build_smime_entity (BODY * a, char *certlist) fpout = m_tempfile (tempfile, sizeof(tempfile), NONULL(Tempdir), NULL); if (!fpout) { - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); return NULL; } @@ -1769,7 +1769,7 @@ int smime_decrypt_mime (FILE * fpin, FILE ** fpout, BODY * b, BODY ** cur) tmpfp = m_tempfile (tempfile, sizeof(tempfile), NONULL(Tempdir), NULL); if (!tmpfp) { - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); return (-1); } @@ -1785,7 +1785,7 @@ int smime_decrypt_mime (FILE * fpin, FILE ** fpout, BODY * b, BODY ** cur) *fpout = m_tempfile (tempfile, sizeof(tempfile), NONULL(Tempdir), NULL); if (!*fpout) { - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); rv = -1; goto bail; }