diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-10 16:55:46 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-10 16:55:46 +0000 |
commit | 3a13c201dc916b6507f603a6d88d73ee6eb358c7 (patch) | |
tree | f89b18963552132f07e4d9c68092367c1df4af7a /examples/IPC_SAP | |
parent | a347327873942bfa27c0f181c7ffe82b85ba4a79 (diff) | |
download | ATCD-3a13c201dc916b6507f603a6d88d73ee6eb358c7.tar.gz |
ChangeLogTag:Wed Feb 10 10:53:59 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'examples/IPC_SAP')
-rw-r--r-- | examples/IPC_SAP/TLI_SAP/ftp-server.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/IPC_SAP/TLI_SAP/ftp-server.cpp b/examples/IPC_SAP/TLI_SAP/ftp-server.cpp index 3d185fa5e2d..89dde0cf116 100644 --- a/examples/IPC_SAP/TLI_SAP/ftp-server.cpp +++ b/examples/IPC_SAP/TLI_SAP/ftp-server.cpp @@ -23,15 +23,15 @@ read_file (void *fd) // as a long on all current ACE platforms. stream.set_handle ((int) (long) fd); - ACE_DEBUG(("start (tid = %t, fd = %d)\n", - stream.get_handle ())) + ACE_DEBUG((LM_DEBUG, "start (tid = %t, fd = %d)\n", + stream.get_handle ())); while ((n = stream.recv (buf, sizeof buf, &flags)) > 0) continue; ACE_UNUSED_ARG (n); - ACE_DEBUG (("finish (tid = %t, fd = %d)\n", + ACE_DEBUG ((LM_DEBUG,"finish (tid = %t, fd = %d)\n", stream.get_handle ())); if (stream.close () == -1) |