we're grownups now. don't care about stupid OS'es that don't know what an
[apps/madmutt.git] / pgpmicalg.c
index 0fc65c0..0a45cc6 100644 (file)
@@ -16,6 +16,7 @@
 #endif
 
 #include "mutt.h"
+#include "handler.h"
 #include "pgp.h"
 #include "pgppacket.h"
 #include "mime.h"
@@ -26,6 +27,8 @@
 #include <string.h>
 #include <ctype.h>
 
+#include "lib/debug.h"
+
 static struct {
   short id;
   const char *name;
@@ -56,8 +59,8 @@ static const char *pgp_hash_to_micalg (short id)
 static void pgp_dearmor (FILE * in, FILE * out)
 {
   char line[HUGE_STRING];
-  long start;
-  long end;
+  off_t start;
+  off_t end;
   char *r;
 
   STATE state;
@@ -73,8 +76,7 @@ static void pgp_dearmor (FILE * in, FILE * out)
       break;
   }
   if (r == NULL) {
-    dprint (1,
-            (debugfile, "pgp_dearmor: Can't find begin of ASCII armor.\n"));
+    debug_print (1, ("Can't find begin of ASCII armor.\n"));
     return;
   }
 
@@ -86,12 +88,12 @@ static void pgp_dearmor (FILE * in, FILE * out)
       break;
   }
   if (r == NULL) {
-    dprint (1, (debugfile, "pgp_dearmor: Armor header doesn't end.\n"));
+    debug_print (1, ("Armor header doesn't end.\n"));
     return;
   }
 
   /* actual data starts here */
-  start = ftell (in);
+  start = ftello (in);
 
   /* find the checksum */
 
@@ -100,17 +102,17 @@ static void pgp_dearmor (FILE * in, FILE * out)
       break;
   }
   if (r == NULL) {
-    dprint (1, (debugfile, "pgp_dearmor: Can't find end of ASCII armor.\n"));
+    debug_print (1, ("Can't find end of ASCII armor.\n"));
     return;
   }
 
-  if ((end = ftell (in) - safe_strlen (line)) < start) {
-    dprint (1, (debugfile, "pgp_dearmor: end < start???\n"));
+  if ((end = ftello (in) - str_len (line)) < start) {
+    debug_print (1, ("end < start???\n"));
     return;
   }
 
-  if (fseek (in, start, SEEK_SET) == -1) {
-    dprint (1, (debugfile, "pgp_dearmor: Can't seekto start.\n"));
+  if (fseeko (in, start, SEEK_SET) == -1) {
+    debug_print (1, ("Can't seekto start.\n"));
     return;
   }
 
@@ -121,8 +123,7 @@ static short pgp_mic_from_packet (unsigned char *p, size_t len)
 {
   /* is signature? */
   if ((p[0] & 0x3f) != PT_SIG) {
-    dprint (1, (debugfile, "pgp_mic_from_packet: tag = %d, want %d.\n",
-                p[0] & 0x3f, PT_SIG));
+    debug_print (1, ("tag = %d, want %d.\n", p[0] & 0x3f, PT_SIG));
     return -1;
   }
 
@@ -133,7 +134,7 @@ static short pgp_mic_from_packet (unsigned char *p, size_t len)
     /* version 4 signature */
     return (short) p[4];
   else {
-    dprint (1, (debugfile, "pgp_mic_from_packet: Bad signature packet.\n"));
+    debug_print (1, ("Bad signature packet.\n"));
     return -1;
   }
 }
@@ -169,7 +170,7 @@ static short pgp_find_hash (const char *fname)
     rv = pgp_mic_from_packet (p, l);
   }
   else {
-    dprint (1, (debugfile, "pgp_find_hash: No packet.\n"));
+    debug_print (1, ("No packet.\n"));
   }
 
 bye: