diff options
Diffstat (limited to 'src/lib/libssl/src/MacOS')
-rw-r--r-- | src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp | 2 | ||||
-rw-r--r-- | src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp b/src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp index aaf2a68ca9..c95d804d5d 100644 --- a/src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp +++ b/src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.cpp | |||
@@ -1287,7 +1287,7 @@ EXITPOINT: | |||
1287 | 1287 | ||
1288 | // Send some bytes | 1288 | // Send some bytes |
1289 | 1289 | ||
1290 | int MacSocket_send(const int inSocketNum,void *inBuff,int inBuffLength) | 1290 | int MacSocket_send(const int inSocketNum,const void *inBuff,int inBuffLength) |
1291 | { | 1291 | { |
1292 | OSErr errCode = noErr; | 1292 | OSErr errCode = noErr; |
1293 | int bytesSent = 0; | 1293 | int bytesSent = 0; |
diff --git a/src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h b/src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h index 6e90a5bb44..ad59dc9e4f 100644 --- a/src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h +++ b/src/lib/libssl/src/MacOS/GetHTTPS.src/MacSocket.h | |||
@@ -62,7 +62,7 @@ int MacSocket_recv(const int inSocketNum,void *outBuff,int outBuffLength,const B | |||
62 | 62 | ||
63 | // Call this to send data on a socket | 63 | // Call this to send data on a socket |
64 | 64 | ||
65 | int MacSocket_send(const int inSocketNum,void *inBuff,int inBuffLength); | 65 | int MacSocket_send(const int inSocketNum,const void *inBuff,int inBuffLength); |
66 | 66 | ||
67 | 67 | ||
68 | // If zero bytes were read in a call to MacSocket_recv(), it may be that the remote end has done a half-close | 68 | // If zero bytes were read in a call to MacSocket_recv(), it may be that the remote end has done a half-close |