You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/05/25 00:14:56 UTC

cvs commit: apache-2.0/src/lib/apr/test testproc.c

rbb         00/05/24 15:14:54

  Modified:    src/lib/apr/test testproc.c
  Log:
  Make the testproc stuff work again after re-naming the stdin, stdout, stderr
  to in, out, err in the ap_proc_t structure.
  
  Revision  Changes    Path
  1.17      +2 -2      apache-2.0/src/lib/apr/test/testproc.c
  
  Index: testproc.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/test/testproc.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- testproc.c	2000/05/23 21:03:58	1.16
  +++ testproc.c	2000/05/24 22:14:51	1.17
  @@ -143,7 +143,7 @@
       fprintf(stdout, "OK.\n");
   
       fprintf(stdout, "Grabbing child's stdin.......");
  -    testfile = newproc.stdin;
  +    testfile = newproc.in;
       fprintf(stdout, "OK.\n");
   
       length = 256;
  @@ -154,7 +154,7 @@
       else fprintf(stderr, "Write failed.\n");
   
       fprintf(stdout, "Grabbing child's stdout.......");
  -    testfile = newproc.stdout;
  +    testfile = newproc.out;
       fprintf(stdout, "OK.\n");
   
       length = 256;