summaryrefslogtreecommitdiff
path: root/netsvcs
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-02-09 23:07:30 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-02-09 23:07:30 +0000
commita0a113bd9fe80987cf13dde0ac42644cc64f44be (patch)
tree499cfe100fc5a530fadd99c836b37d16c779ee66 /netsvcs
parentcf46c27584ed773e2b344abb8783e635c6f67b97 (diff)
downloadATCD-a0a113bd9fe80987cf13dde0ac42644cc64f44be.tar.gz
(handle_input): get input from stdin, not ACE_STDIN
Diffstat (limited to 'netsvcs')
-rw-r--r--netsvcs/clients/Naming/Client/Client_Test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/netsvcs/clients/Naming/Client/Client_Test.cpp b/netsvcs/clients/Naming/Client/Client_Test.cpp
index fbc027bcdc3..dec43fae5a1 100644
--- a/netsvcs/clients/Naming/Client/Client_Test.cpp
+++ b/netsvcs/clients/Naming/Client/Client_Test.cpp
@@ -178,7 +178,7 @@ Client_Test::handle_input (ACE_HANDLE)
break;
case 'b' :
// get the input from stdin
- ACE_OS::fgets (input, sizeof input, ACE_STDIN);
+ ACE_OS::fgets (input, sizeof input, stdin);
// get the key
if ((temp_buf = ACE_OS::strtok (input, " ")))
@@ -212,7 +212,7 @@ Client_Test::handle_input (ACE_HANDLE)
break;
case 'r' :
// get the input from stdin
- ACE_OS::fgets (input, sizeof input, ACE_STDIN);
+ ACE_OS::fgets (input, sizeof input, stdin);
// get the key
if ((temp_buf = ACE_OS::strtok (input, " ")))