Removed two unnecessary debug_print()s from procheader.c.
[claws.git] / src / procheader.c
index 9e67aeda13eb2d617f687019820f922e263ae460..be70c9fcfb1d09fba00874fe10e9646171544007 100644 (file)
@@ -843,7 +843,6 @@ static gint procheader_scan_date_string(const gchar *str,
        /* RFC3339 subset, with fraction of second */
        result = sscanf(str, "%4d-%2d-%2d%c%2d:%2d:%2d.%d%6s",
                        year, &month_n, day, &sep1, hh, mm, ss, &secfract, zonestr);
-       debug_print("str |%s|, result %d\n", str, result);
        if (result == 9
                        && (sep1 == 'T' || sep1 == 't' || sep1 == ' ')) {
                if (month_n >= 1 && month_n <= 12) {
@@ -861,7 +860,6 @@ static gint procheader_scan_date_string(const gchar *str,
        /* RFC3339 subset, no fraction of second */
        result = sscanf(str, "%4d-%2d-%2d%c%2d:%2d:%2d%6s",
                        year, &month_n, day, &sep1, hh, mm, ss, zonestr);
-       debug_print("str |%s|, result %d\n", str, result);
        if (result == 8
                        && (sep1 == 'T' || sep1 == 't' || sep1 == ' ')) {
                if (month_n >= 1 && month_n <= 12) {