summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-30 11:00:48 +0000
committerPixel <Pixel>2001-11-30 11:00:48 +0000
commit37989e882eaa805662dd0e260eb293c939e082b7 (patch)
tree2f061ce0c497ecc8992b345c1079ba310272e282
parent68aeaf14ea2bc388b3d3c5d195fd3f5e983576c0 (diff)
Fixed name on output pipe.
-rw-r--r--lib/OutPipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/OutPipe.cc b/lib/OutPipe.cc
index 9e60b15..35d23d3 100644
--- a/lib/OutPipe.cc
+++ b/lib/OutPipe.cc
@@ -27,5 +27,5 @@ bool OutPipe::CanRead() {
}
String OutPipe::GetName() {
- return (String("Input pipe from stdout (") + (hooked ? "" : "not ") + "hooked)");
+ return (String("Output pipe to stdin (") + (hooked ? "" : "not ") + "hooked)");
}