summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
authorhemagx <hemagx2@gmail.com>2016-02-17 14:26:01 +0200
committerHaru <haru@dotalux.com>2016-07-12 20:58:34 +0200
commit732c6d6019d608f9f0e151ec75c48fcc498d4f51 (patch)
tree85691162dcea7fad5c050cf3414bed2e77cc33f9 /src/map
parentad05eb4f2e531f5a9aec6f27d2f69fd53b6525ac (diff)
downloadhercules-732c6d6019d608f9f0e151ec75c48fcc498d4f51.tar.gz
hercules-732c6d6019d608f9f0e151ec75c48fcc498d4f51.tar.bz2
hercules-732c6d6019d608f9f0e151ec75c48fcc498d4f51.tar.xz
hercules-732c6d6019d608f9f0e151ec75c48fcc498d4f51.zip
Interface md5calc.c
Diffstat (limited to 'src/map')
-rw-r--r--src/map/script.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 90a70e48d..effe40ea5 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -2,7 +2,7 @@
* This file is part of Hercules.
* http://herc.ws - http://github.com/HerculesWS/Hercules
*
- * Copyright (C) 2012-2015 Hercules Dev Team
+ * Copyright (C) 2012-2016 Hercules Dev Team
* Copyright (C) Athena Dev Teams
*
* Hercules is free software: you can redistribute it and/or modify
@@ -16049,7 +16049,7 @@ BUILDIN(md5)
tmpstr = script_getstr(st,2);
md5str = (char *)aMalloc((32+1)*sizeof(char));
- MD5_String(tmpstr, md5str);
+ md5->string(tmpstr, md5str);
script_pushstr(st, md5str);
return true;
}