Mercurial > 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 wrap: on
line diff
--- a/src/masqmail.c Thu Nov 04 14:36:47 2010 -0300 +++ b/src/masqmail.c Thu Nov 04 14:45:42 2010 -0300 @@ -522,7 +522,6 @@ } else if (strncmp(opt, "q", 1) == 0) { /* must be after the `qo' check */ gchar *optarg; - int dummy; do_runq = TRUE; mta_mode = MODE_RUNQUEUE; @@ -530,7 +529,7 @@ if (optarg) { /* not just one single queue run but regular runs */ mta_mode = MODE_DAEMON; - queue_interval = time_interval(optarg, &dummy); + queue_interval = time_interval(optarg); } } else if (strcmp(opt, "t") == 0) {