Mercurial > masqmail
comparison 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 |
comparison
equal
deleted
inserted
replaced
253:c28e8dfebfc3 | 254:82d168dd52fd |
---|---|
520 route_name = get_optarg(argv, &arg, opt+2); | 520 route_name = get_optarg(argv, &arg, opt+2); |
521 | 521 |
522 } else if (strncmp(opt, "q", 1) == 0) { | 522 } else if (strncmp(opt, "q", 1) == 0) { |
523 /* must be after the `qo' check */ | 523 /* must be after the `qo' check */ |
524 gchar *optarg; | 524 gchar *optarg; |
525 int dummy; | |
526 | 525 |
527 do_runq = TRUE; | 526 do_runq = TRUE; |
528 mta_mode = MODE_RUNQUEUE; | 527 mta_mode = MODE_RUNQUEUE; |
529 optarg = get_optarg(argv, &arg, opt+1); | 528 optarg = get_optarg(argv, &arg, opt+1); |
530 if (optarg) { | 529 if (optarg) { |
531 /* not just one single queue run but regular runs */ | 530 /* not just one single queue run but regular runs */ |
532 mta_mode = MODE_DAEMON; | 531 mta_mode = MODE_DAEMON; |
533 queue_interval = time_interval(optarg, &dummy); | 532 queue_interval = time_interval(optarg); |
534 } | 533 } |
535 | 534 |
536 } else if (strcmp(opt, "t") == 0) { | 535 } else if (strcmp(opt, "t") == 0) { |
537 opt_t = TRUE; | 536 opt_t = TRUE; |
538 | 537 |