mcatan 2004/04/29 15:11:20
Modified: src socketimpl.cpp
Log:
fixed syntax error in macros tests
Revision Changes Path
1.13 +1 -1 logging-log4cxx/src/socketimpl.cpp
Index: socketimpl.cpp
===================================================================
RCS file: /home/cvs/logging-log4cxx/src/socketimpl.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- socketimpl.cpp 28 Apr 2004 05:07:07 -0000 1.12
+++ socketimpl.cpp 29 Apr 2004 22:11:20 -0000 1.13
@@ -116,7 +116,7 @@
void SocketImpl::accept(SocketImplPtr s)
{
sockaddr_in client_addr;
-#ifdef WIN32 || defined(__hpux)
+#if defined(WIN32) || defined(__hpux)
int client_len;
#else
socklen_t client_len;