]> git.mxchange.org Git - simgear.git/commitdiff
Oops! fixed a typo ...
authorcurt <curt>
Tue, 26 Sep 2000 21:28:46 +0000 (21:28 +0000)
committercurt <curt>
Tue, 26 Sep 2000 21:28:46 +0000 (21:28 +0000)
simgear/io/sg_socket.cxx

index 202aebfc713eb993f96a22f1f8204eccc28888e5..4340135726e91323993c1f3891a82b64efa6621e 100644 (file)
@@ -156,7 +156,7 @@ SGSocket::SocketType SGSocket::make_client_socket () {
 
 
 // Wrapper functions
-size_t readsocket( int fd, void *buf, size_t count ) {
+size_t SGSocket::readsocket( int fd, void *buf, size_t count ) {
 #if defined(_MSC_VER)
     return ::recv( fd, buf, count, 0 );
 #else
@@ -164,7 +164,7 @@ size_t readsocket( int fd, void *buf, size_t count ) {
 #endif
 }
 
-size_t writesocket( int fd, const void *buf, size_t count ) {
+size_t SGSocket::writesocket( int fd, const void *buf, size_t count ) {
 #if defined(_MSC_VER)
     return ::send( fd, buf, count, 0 );
 #else
@@ -173,7 +173,7 @@ size_t writesocket( int fd, const void *buf, size_t count ) {
 }
 
 #if !defined(_MSC_VER)
-int closesocket( int fd ) {
+int SGSocket::closesocket( int fd ) {
     return ::close( fd );
 }
 #endif