summaryrefslogtreecommitdiff
path: root/src/common/socket.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-21 12:12:04 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-21 12:12:04 +0000
commit932c76a02329e9c1b40f2b3d134ef22c55c19243 (patch)
tree802b8dbc1594413f2f25b7e770854b10883c8d6d /src/common/socket.c
parent4ef9dcc884c7b27a4f29b932461f76470cb0689a (diff)
downloadhercules-932c76a02329e9c1b40f2b3d134ef22c55c19243.tar.gz
hercules-932c76a02329e9c1b40f2b3d134ef22c55c19243.tar.bz2
hercules-932c76a02329e9c1b40f2b3d134ef22c55c19243.tar.xz
hercules-932c76a02329e9c1b40f2b3d134ef22c55c19243.zip
Typo hunt
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9684 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/socket.c')
-rw-r--r--src/common/socket.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/socket.c b/src/common/socket.c
index 51725a0a5..beb658144 100644
--- a/src/common/socket.c
+++ b/src/common/socket.c
@@ -670,8 +670,8 @@ int do_sendrecv(int next)
continue;
//POSTSEND: Does write EVER BLOCK? NO!! not unless WE ARE CURRENTLY SENDING SOMETHING
- //Or just have opened a connection and dont know if its ready
- //And since eA isn't multi threaded and all the sockets are non blocking THIS ISNT A PROBLEM! [Meruru]
+ //Or just have opened a connection and don't know if its ready
+ //And since eA isn't multi threaded and all the sockets are non blocking THIS ISN'T A PROBLEM! [Meruru]
if(session[i]->wdata_size && session[i]->func_send)
session[i]->func_send(i);
@@ -703,7 +703,7 @@ int do_sendrecv(int next)
}
//Does write EVER BLOCK. NO not unless WE ARE CURRENTALLY SENDING SOMETHING
- //And sence eA isnt multi threaded THIS ISNT A PROBLEM!
+ //And sence eA isnt multi threaded THIS ISN'T A PROBLEM!
if(session[i]->wdata_size && session[i]->func_send)
session[i]->func_send(i);