diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-22 19:22:21 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-22 19:22:21 +0000 |
commit | 2c8e1d86149246bcd84e3708c2dbf7efe832d2ac (patch) | |
tree | 0347e8d77ae00e2893eb6de6d0aed0ffd6b46a75 /src/common/socket.c | |
parent | 2cbdcbe50c2f34b70cc39c8973ae5b051d304577 (diff) | |
download | hercules-2c8e1d86149246bcd84e3708c2dbf7efe832d2ac.tar.gz hercules-2c8e1d86149246bcd84e3708c2dbf7efe832d2ac.tar.bz2 hercules-2c8e1d86149246bcd84e3708c2dbf7efe832d2ac.tar.xz hercules-2c8e1d86149246bcd84e3708c2dbf7efe832d2ac.zip |
- Probably fixed a signed/unsigned mismatch warning on the new socket code.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8848 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/socket.c')
-rw-r--r-- | src/common/socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/socket.c b/src/common/socket.c index 014ef9272..65c85a48b 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -63,7 +63,7 @@ int ip_rules = 1; #endif
static int mode_neg=1;
-static int frame_size=TCP_FRAME_LEN;
+static unsigned int frame_size=TCP_FRAME_LEN;
#ifndef MINICORE
enum {
@@ -1148,7 +1148,7 @@ int socket_config_read(const char *cfgName) { mode_neg = 0;
else mode_neg = atoi(w2);
} else if (strcmpi(w1, "frame_size") == 0)
- frame_size = atoi(w2);
+ frame_size = strtoul(w2, NULL, 10);
else if (strcmpi(w1, "import") == 0)
socket_config_read(w2);
}
|