summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-10 01:16:40 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-10 01:16:40 +0000
commit23a57e6b9ef7dab940a64c7e648e5f4f714f19d2 (patch)
tree556d53e2d3d5fc9c7f66136accf514ddfb1303df
parent83433c4f35b578ae30c6f5c563a50b41823d02b5 (diff)
downloadATCD-23a57e6b9ef7dab940a64c7e648e5f4f714f19d2.tar.gz
fixed typo in template specializations: ACE_LSOCK_ACCEPTOR instead of ACE_SOCK_LACCEPTOR
-rw-r--r--examples/Connection/non_blocking/test_lsock_acceptor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Connection/non_blocking/test_lsock_acceptor.cpp b/examples/Connection/non_blocking/test_lsock_acceptor.cpp
index 958cc0e5da7..7b501ad42dd 100644
--- a/examples/Connection/non_blocking/test_lsock_acceptor.cpp
+++ b/examples/Connection/non_blocking/test_lsock_acceptor.cpp
@@ -28,6 +28,6 @@ main (int argc, char *argv[])
template class ACE_Concurrency_Strategy<SVC_HANDLER>;
template class ACE_Oneshot_Acceptor<SVC_HANDLER, ACE_LSOCK_ACCEPTOR>;
template class ACE_Svc_Handler<ACE_LSOCK_STREAM, ACE_NULL_SYNCH>;
-template class IPC_Server<SVC_HANDLER, ACE_SOCK_LACCEPTOR>;
+template class IPC_Server<SVC_HANDLER, ACE_LSOCK_ACCEPTOR>;
template class Svc_Handler<ACE_LSOCK_STREAM>;
#endif /* ACE_TEMPLATES_REQUIRE_SPECIALIZATION */