diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-10 20:38:43 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-10 20:38:43 +0000 |
commit | f8466eef681265e2f50c27fc3bb0c1c47ac2b41f (patch) | |
tree | f5dea5fdde8c7ad5a57a9dd8360d280732b6ee29 /cpp/src/IceSSL/SslConnectionOpenSSLServer.cpp | |
parent | _ovwt -> _ovrd (diff) | |
download | ice-f8466eef681265e2f50c27fc3bb0c1c47ac2b41f.tar.bz2 ice-f8466eef681265e2f50c27fc3bb0c1c47ac2b41f.tar.xz ice-f8466eef681265e2f50c27fc3bb0c1c47ac2b41f.zip |
stlport in debug mode
Diffstat (limited to 'cpp/src/IceSSL/SslConnectionOpenSSLServer.cpp')
-rw-r--r-- | cpp/src/IceSSL/SslConnectionOpenSSLServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/SslConnectionOpenSSLServer.cpp b/cpp/src/IceSSL/SslConnectionOpenSSLServer.cpp index 14bb5dc75e3..1933a5056a1 100644 --- a/cpp/src/IceSSL/SslConnectionOpenSSLServer.cpp +++ b/cpp/src/IceSSL/SslConnectionOpenSSLServer.cpp @@ -246,7 +246,7 @@ IceSSL::OpenSSL::ServerConnection::write(Buffer& buf, int timeout) break; } - bytesWritten = sslWrite((char *)buf.i, packetSize); + bytesWritten = sslWrite(static_cast<char*>(&*buf.i), packetSize); switch (getLastError()) { |