masqmail
diff src/masqmail.c @ 254:82d168dd52fd
removed the obsolete pos argument from time_interval()
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Thu, 04 Nov 2010 14:45:42 -0300 |
parents | 2babd21e7c75 |
children | 8cca5305e4f0 |
line diff
1.1 --- a/src/masqmail.c Thu Nov 04 14:36:47 2010 -0300 1.2 +++ b/src/masqmail.c Thu Nov 04 14:45:42 2010 -0300 1.3 @@ -522,7 +522,6 @@ 1.4 } else if (strncmp(opt, "q", 1) == 0) { 1.5 /* must be after the `qo' check */ 1.6 gchar *optarg; 1.7 - int dummy; 1.8 1.9 do_runq = TRUE; 1.10 mta_mode = MODE_RUNQUEUE; 1.11 @@ -530,7 +529,7 @@ 1.12 if (optarg) { 1.13 /* not just one single queue run but regular runs */ 1.14 mta_mode = MODE_DAEMON; 1.15 - queue_interval = time_interval(optarg, &dummy); 1.16 + queue_interval = time_interval(optarg); 1.17 } 1.18 1.19 } else if (strcmp(opt, "t") == 0) {