dead code
[apps/madmutt.git] / from.c
diff --git a/from.c b/from.c
index a53944a..7122052 100644 (file)
--- a/from.c
+++ b/from.c
@@ -17,7 +17,6 @@
 #include <lib-lib/mem.h>
 #include <lib-lib/str.h>
 #include <lib-lib/macros.h>
-#include <lib-lib/debug.h>
 
 #include "mutt.h"
 
@@ -72,8 +71,6 @@ int is_from (const char *s, char *path, ssize_t pathlen, time_t * tp)
   if (!*s)
     return 0;
 
-  debug_print (3, ("parsing: %s\n", s));
-
   if (!is_day_name (s)) {
     const char *p;
     ssize_t len;
@@ -98,7 +95,6 @@ int is_from (const char *s, char *path, ssize_t pathlen, time_t * tp)
         len = pathlen - 1;
       memcpy (path, s, len);
       path[len] = 0;
-      debug_print (3, ("got return path: %s\n", path));
     }
 
     s = vskipspaces(p + 1);
@@ -106,7 +102,6 @@ int is_from (const char *s, char *path, ssize_t pathlen, time_t * tp)
       return 0;
 
     if (!is_day_name (s)) {
-      debug_print (1, ("expected weekday, got: %s\n", s));
       return 0;
     }
   }
@@ -174,10 +169,6 @@ int is_from (const char *s, char *path, ssize_t pathlen, time_t * tp)
     return 0;
   tm.tm_year = yr > 1900 ? yr - 1900 : (yr < 70 ? yr + 100 : yr);
 
-  debug_print (3, ("month=%d, day=%d, hr=%d, min=%d, sec=%d, yr=%d.\n",
-           tm.tm_mon, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec,
-           tm.tm_year));
-
   tm.tm_isdst = -1;
 
   if (tp)