diff options
author | 2003-05-11 21:34:11 +0000 | |
---|---|---|
committer | 2003-05-11 21:34:11 +0000 | |
commit | 3a5f3d0e407fc493f4a740bd79f4e3c586fc3841 (patch) | |
tree | ca1fe47248cc912e2a530c11856550d9f5d60cb9 /lib/libssl/src/MacOS/GetHTTPS.src | |
parent | -DROKEN_RENAME not needed for these. (diff) | |
download | wireguard-openbsd-3a5f3d0e407fc493f4a740bd79f4e3c586fc3841.tar.xz wireguard-openbsd-3a5f3d0e407fc493f4a740bd79f4e3c586fc3841.zip |
import 0.9.7b (without idea and rc5)
Diffstat (limited to 'lib/libssl/src/MacOS/GetHTTPS.src')
-rw-r--r-- | lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp | 2 | ||||
-rw-r--r-- | lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp b/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp index aaf2a68ca9e..c95d804d5d4 100644 --- a/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp +++ b/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp @@ -1287,7 +1287,7 @@ EXITPOINT: // Send some bytes -int MacSocket_send(const int inSocketNum,void *inBuff,int inBuffLength) +int MacSocket_send(const int inSocketNum,const void *inBuff,int inBuffLength) { OSErr errCode = noErr; int bytesSent = 0; diff --git a/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h b/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h index 6e90a5bb447..ad59dc9e4f9 100644 --- a/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h +++ b/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h @@ -62,7 +62,7 @@ int MacSocket_recv(const int inSocketNum,void *outBuff,int outBuffLength,const B // Call this to send data on a socket -int MacSocket_send(const int inSocketNum,void *inBuff,int inBuffLength); +int MacSocket_send(const int inSocketNum,const void *inBuff,int inBuffLength); // If zero bytes were read in a call to MacSocket_recv(), it may be that the remote end has done a half-close |