diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-28 14:42:04 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-28 14:42:04 +0000 |
commit | 0ce51345c593a04feb87d338fe74189cfb603223 (patch) | |
tree | fdb3100a425c109061b91bea61b53547e3b8952e /src/login | |
parent | ad245cf78e5433863b990b581483dcd1523526ce (diff) | |
download | hercules-0ce51345c593a04feb87d338fe74189cfb603223.tar.gz hercules-0ce51345c593a04feb87d338fe74189cfb603223.tar.bz2 hercules-0ce51345c593a04feb87d338fe74189cfb603223.tar.xz hercules-0ce51345c593a04feb87d338fe74189cfb603223.zip |
- Fixed a compile warning in the login txt/sql server.
- Changed the mob drop rate adjust function to receive a signed int argument. Probably will fix those drops with 0% becoming 100%
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7371 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/login.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/login/login.c b/src/login/login.c index 197c40dda..a472b3216 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -175,6 +175,8 @@ int use_md5_passwds = 0; int console = 0;
+int charif_sendallwos(int sfd, unsigned char *buf, unsigned int len);
+
//------------------------------
// Writing function of logs file
//------------------------------
|