diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-11 22:32:03 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-11 22:32:03 +0000 |
commit | 6817ebee25aa338fa686ed1812884a5ccaca6ae1 (patch) | |
tree | 74844ba69518763a9fa86622659295711823d524 /tests/IOStream_Test.cpp | |
parent | 7f3aeb54392fd6f1f5fa1ca421c9f273175abe5c (diff) | |
download | ATCD-6817ebee25aa338fa686ed1812884a5ccaca6ae1.tar.gz |
(server): check for double-quote instead of newline as end-of-string character
Diffstat (limited to 'tests/IOStream_Test.cpp')
-rw-r--r-- | tests/IOStream_Test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/IOStream_Test.cpp b/tests/IOStream_Test.cpp index 76037989328..b760bf3e28e 100644 --- a/tests/IOStream_Test.cpp +++ b/tests/IOStream_Test.cpp @@ -288,7 +288,7 @@ server (void *arg = 0) ACE_DEBUG ((LM_DEBUG, "(%P|%t) Server Received: (")); while (client_handler && - (buf.length() == 0 || buf[buf.length() - 1] != '\n')) + (buf.length() == 0 || buf[buf.length() - 1] != '"')) { client_handler >> buf; if (buf.length() > 0) |