commit bcc39aa690ad61c331b36e5b17e2252ab54c8cfd
parent 2d95171a97d46817e1e413b3d0a77b92072cc034
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Fri, 13 Nov 2015 16:43:42 +0100
Removed two unnecessary debug_print()s from procheader.c.
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/procheader.c b/src/procheader.c
@@ -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) {