]> git.llucax.com Git - software/mutt-debian.git/blobdiff - crypt.c
small fix to the German translation (Closes: 553238), set time_inc to be 250ms (Close...
[software/mutt-debian.git] / crypt.c
diff --git a/crypt.c b/crypt.c
index 67d7276bfdc687c529dc9de1d8996f022e210bda..60b594d04b619f5399fcacfb2f7351a309986db3 100644 (file)
--- a/crypt.c
+++ b/crypt.c
@@ -1,6 +1,6 @@
 /*
  * Copyright (C) 1996,1997 Michael R. Elkins <me@mutt.org>
- * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
+ * Copyright (C) 1999-2000,2002-4,2006 Thomas Roessler <roessler@does-not-exist.org>
  * Copyright (C) 2001  Thomas Roessler <roessler@does-not-exist.org>
  *                     Oliver Ehli <elmy@acm.org>
  * Copyright (C) 2003  Werner Koch <wk@gnupg.org>
@@ -30,7 +30,6 @@
 #include "mime.h"
 #include "copy.h"
 #include "mutt_crypt.h"
-#include "pgp.h"
 
 #include <sys/wait.h>
 #include <string.h>
@@ -539,7 +538,7 @@ int crypt_write_signed(BODY *a, STATE *s, const char *tempfile)
     fputc (c, fp);
     
   }
-  fclose (fp);
+  safe_fclose (&fp);
 
   return 0;
 }
@@ -614,7 +613,7 @@ void crypt_extract_keys_from_messages (HEADER * h)
        if (Context->hdrs[Context->v2r[i]]->security & ENCRYPT &&
            !crypt_valid_passphrase (Context->hdrs[Context->v2r[i]]->security))
        {
-         fclose (fpout);
+         safe_fclose (&fpout);
          break;
        }
 
@@ -696,7 +695,7 @@ void crypt_extract_keys_from_messages (HEADER * h)
     }
   }
       
-  fclose (fpout);
+  safe_fclose (&fpout);
   if (isendwin())
     mutt_any_key_to_continue (NULL);