summaryrefslogtreecommitdiff
path: root/src/elogin
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-20 00:17:54 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-20 00:17:54 +0300
commit70bea71a0907decf83c0c882001fd3d22c4322ad (patch)
tree44ad7ad0bcc0a105c98884d87c5706c7be9c5d7e /src/elogin
parent8bd2e025cca547a581de5f44b22e283d8d046915 (diff)
downloadevol-hercules-70bea71a0907decf83c0c882001fd3d22c4322ad.tar.gz
evol-hercules-70bea71a0907decf83c0c882001fd3d22c4322ad.tar.bz2
evol-hercules-70bea71a0907decf83c0c882001fd3d22c4322ad.tar.xz
evol-hercules-70bea71a0907decf83c0c882001fd3d22c4322ad.zip
Drop support for client protocol version 6 (Feb 17 2015).
Diffstat (limited to 'src/elogin')
-rw-r--r--src/elogin/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elogin/parse.c b/src/elogin/parse.c
index 0a42ecd..282944d 100644
--- a/src/elogin/parse.c
+++ b/src/elogin/parse.c
@@ -34,7 +34,7 @@ void login_parse_version(int fd)
clientVersion = RFIFOL(fd, 2);
- if (clientVersion < 6)
+ if (clientVersion < 7)
{
lclif->login_error(fd, 5);
return;
@@ -58,7 +58,7 @@ bool elogin_client_login_pre(int *fdPtr,
char username[NAME_LENGTH];
safestrncpy(username, RFIFOP(fd, 6), NAME_LENGTH);
int len = (int)safestrnlen(username, NAME_LENGTH);
- if (clientVersion < 6)
+ if (clientVersion < 7)
{
lclif->login_error(fd, 5);
hookStop();