X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=blobdiff_plain;f=src%2Fsrc%2Fchild.c;h=c5054b6fbbe37b25b6573fd2fd8aefe072c42d1d;hp=d3cd88201d46c5422588e11e894a10d4996af718;hb=ff9663026d1a318d385730c4a2c3e85508b4b00b;hpb=5bf8a51681e171328e72f5d5b5ef8fd8a67d5f05 diff --git a/src/src/child.c b/src/src/child.c index d3cd88201..c5054b6fb 100644 --- a/src/src/child.c +++ b/src/src/child.c @@ -75,7 +75,7 @@ int n = 0; int extra = pcount ? *pcount : 0; uschar **argv; -argv = store_get((extra + acount + MAX_CLMACROS + 18) * sizeof(char *), FALSE); +argv = store_get((extra + acount + MAX_CLMACROS + 19) * sizeof(char *), FALSE); /* In all case, the list starts out with the path, any macros, and a changed config file. */ @@ -109,6 +109,7 @@ if (!minimal) if (debug_selector != 0) argv[n++] = string_sprintf("-d=0x%x", debug_selector); } + if (!f.testsuite_delays) argv[n++] = US"-odd"; if (f.dont_deliver) argv[n++] = US"-N"; if (f.queue_smtp) argv[n++] = US"-odqs"; if (f.synchronous_delivery) argv[n++] = US"-odi";