dougm 02/01/08 14:49:32
Modified: t/response/TestModperl readline.pm getc.pm
Log:
untie STDIN
Revision Changes Path
1.3 +2 -0 modperl-2.0/t/response/TestModperl/readline.pm
Index: readline.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/t/response/TestModperl/readline.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- readline.pm 5 Dec 2001 05:48:39 -0000 1.2
+++ readline.pm 8 Jan 2002 22:49:32 -0000 1.3
@@ -16,6 +16,8 @@
$r->puts($line);
}
+ untie *STDIN;
+
Apache::OK;
}
1.3 +2 -0 modperl-2.0/t/response/TestModperl/getc.pm
Index: getc.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/t/response/TestModperl/getc.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- getc.pm 7 Dec 2001 04:47:13 -0000 1.2
+++ getc.pm 8 Jan 2002 22:49:32 -0000 1.3
@@ -16,6 +16,8 @@
$r->puts($c);
}
+ untie *STDIN;
+
Apache::OK;
}