summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2005-12-15 15:44:46 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2005-12-15 15:44:46 +0000
commit1921d2ea1648c90d45da23f26cf8855465521426 (patch)
treeed48d381a7d8bb87e1d0e18d7c6243074ecd0265 /src
parenteff37e472369435d294c297f2a4aabb8de151554 (diff)
Moved a debug statement to avoid a testing race.
Diffstat (limited to 'src')
-rw-r--r--src/src/rda.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/src/rda.c b/src/src/rda.c
index 1c45f7bb3..1acc75288 100644
--- a/src/src/rda.c
+++ b/src/src/rda.c
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/rda.c,v 1.10 2005/08/08 13:21:46 ph10 Exp $ */
+/* $Cambridge: exim/src/src/rda.c,v 1.11 2005/12/15 15:44:46 ph10 Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -770,14 +770,6 @@ if (read(fd, filtertype, sizeof(int)) != sizeof(int) ||
read(fd, &yield, sizeof(int)) != sizeof(int) ||
!rda_read_string(fd, error)) goto DISASTER;
-/* In the test harness, give the subprocess time to finish off and write
-any debugging output. */
-
-if (running_in_test_harness) millisleep(250);
-
-DEBUG(D_route)
- debug_printf("rda_interpret: subprocess yield=%d error=%s\n", yield, *error);
-
/* Read the contents of any syntax error blocks if we have a pointer */
if (eblockp != NULL)
@@ -934,6 +926,9 @@ while ((rc = wait(&status)) != pid)
}
}
+DEBUG(D_route)
+ debug_printf("rda_interpret: subprocess yield=%d error=%s\n", yield, *error);
+
if (had_disaster)
{
*error = string_sprintf("internal problem in %s: failure to transfer "