Remove unused code
[apps/madmutt.git] / lib-crypt / pgplib.c
index 923aa14..5e6e821 100644 (file)
@@ -11,7 +11,6 @@
 
 #include <lib-lib/lib-lib.h>
 
-#include "mutt.h"
 #include "lib.h"
 #include "pgplib.h"
 
@@ -35,30 +34,6 @@ const char *pgp_pkalgbytype (unsigned char type)
   }
 }
 
-
-
-/* unused */
-
-#if 0
-
-static const char *hashalgbytype (unsigned char type)
-{
-  switch (type) {
-  case 1:
-    return "MD5";
-  case 2:
-    return "SHA1";
-  case 3:
-    return "RIPE-MD/160";
-  case 4:
-    return "HAVAL";
-  default:
-    return "unknown";
-  }
-}
-
-#endif
-
 short pgp_canencrypt (unsigned char type)
 {
   switch (type) {
@@ -97,7 +72,7 @@ short pgp_get_abilities (unsigned char type)
   return (pgp_canencrypt (type) << 1) | pgp_cansign (type);
 }
 
-void pgp_free_sig (pgp_sig_t ** sigp)
+static void pgp_free_sig (pgp_sig_t ** sigp)
 {
   pgp_sig_t *sp, *q;
 
@@ -112,7 +87,7 @@ void pgp_free_sig (pgp_sig_t ** sigp)
   *sigp = NULL;
 }
 
-void pgp_free_uid (pgp_uid_t ** upp)
+static void pgp_free_uid (pgp_uid_t ** upp)
 {
   pgp_uid_t *up, *q;