X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fchild.c;h=5e4b978cd2210155a5d59b9f008743e769e6e0ca;hb=46d2a5e6f6e7709d172903b13945d23fc0a2c888;hp=3aa6962212e5bf6735d0da901c174d3a74bf8e5e;hpb=eb24befc3e9ad0a36ef8f0bc3527a9bc6c923a7b;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/child.c b/src/src/child.c index 3aa696221..5e4b978cd 100644 --- a/src/src/child.c +++ b/src/src/child.c @@ -109,6 +109,11 @@ if (!minimal) if (debug_selector != 0) argv[n++] = string_sprintf("-d=0x%x", debug_selector); } + DEBUG(D_any) + { + argv[n++] = US"-MCd"; + argv[n++] = US process_purpose; + } if (!f.testsuite_delays) argv[n++] = US"-odd"; if (f.dont_deliver) argv[n++] = US"-N"; if (f.queue_smtp) argv[n++] = US"-odqs"; @@ -140,7 +145,7 @@ if (acount > 0) argv[n] = NULL; if (exec_type == CEE_RETURN_ARGV) { - if (pcount != NULL) *pcount = n; + if (pcount) *pcount = n; return argv; }