mirror of
https://github.com/anope/anope.git
synced 2026-07-07 21:43:13 +02:00
BUILD : 1.7.19 (1279) BUGS : 765 NOTES : Fixed bug when truncating passwords to PASSMAX with enc_none.
git-svn-id: svn://svn.anope.org/anope/trunk@1279 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@997 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
f539caac0d
commit
817316d5f7
@@ -21,6 +21,7 @@ Anope Version S V N
|
||||
08/27 F Added missed help for NS CONFIRM. [#759]
|
||||
08/27 F Fixed typo in en_us.l [#767]
|
||||
08/27 F inspircd11 protocol now uses svshold [#683]
|
||||
08/28 F Fixed bug when truncating passwords to PASSMAX with enc_none [#765]
|
||||
|
||||
Anope Version 1.7.19
|
||||
--------------------
|
||||
|
||||
@@ -43,6 +43,7 @@ int plain_encrypt(const char *src,int len,char *dest,int size) {
|
||||
if(size>=len) {
|
||||
memset(dest,0,size);
|
||||
strncpy(dest,src,len);
|
||||
dest[len] = '\0';
|
||||
return 0;
|
||||
}
|
||||
return -1;
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="19"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="1278"
|
||||
VERSION_BUILD="1279"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.19 (1279)
|
||||
# BUGS : 765
|
||||
# NOTES : Fixed bug when truncating passwords to PASSMAX with enc_none.
|
||||
#
|
||||
# BUILD : 1.7.19 (1278)
|
||||
# BUGS : 683, 767
|
||||
# NOTES : [1] typo in en_us.l [2] Provided by katsklaws patch: inspircd11 protocol now uses svshold.
|
||||
|
||||
Reference in New Issue
Block a user