1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 17:04:47 +02:00

BUILD : 1.7.0 (42) BUGS : 11 NOTES : Fixed quoted MD5 password for MySQL use (again...)

git-svn-id: svn://svn.anope.org/anope/trunk@42 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@31 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-04-14 11:55:08 +00:00
parent bba07a560e
commit 15099958a5
2 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -275,7 +275,7 @@ void db_mysql_save_ns_core(NickCore * nc)
snprintf(sqlcmd, MAX_SQL_BUF,
"INSERT DELAYED INTO anope_ns_core (display,pass,email,greet,icq,url,flags,"
"language,accesscount,memocount,memomax,channelcount,channelmax,active)"
" VALUES ('%s',%s,'%s','%s','%d','%s','%d','%d','%d','%d','%d','%d','%d','1')",
" VALUES ('%s','%s','%s','%s','%d','%s','%d','%d','%d','%d','%d','%d','%d','1')",
cnick, epass, cemail, cgreet, nc->icq, curl, nc->flags,
nc->language, nc->accesscount, nc->memos.memocount,
nc->memos.memomax, nc->channelcount, nc->channelmax);
@@ -466,7 +466,7 @@ void db_mysql_save_cs_info(ChannelInfo * ci)
",last_topic_time,flags,forbidby,forbidreason,bantype,accesscount,akickcount"
",mlock_on,mlock_off,mlock_limit,mlock_key,mlock_flood,mlock_redirect,"
"entry_message,botnick,botflags,bwcount,capsmin,capspercent,floodlines,"
"floodsecs,repeattimes,active) VALUES ('%s','%s','%s',%s,'%s','%s','%s'"
"floodsecs,repeattimes,active) VALUES ('%s','%s','%s','%s','%s','%s','%s'"
",'%d','%d','%s','%s','%d','%d','%s','%s','%d','%d','%d','%d','%d','%d',"
"'%s','%s','%s','%s','%s','%d','%d','%d','%d','%d','%d','%d','1')",
ciname,
+5 -1
View File
@@ -8,11 +8,15 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="0"
VERSION_BUILD="40"
VERSION_BUILD="42"
VERSION_EXTRA=""
# $Log$
#
# BUILD : 1.7.0 (42)
# BUGS : 11
# NOTES : Fixed quoted MD5 password for MySQL use (again...)
#
# BUILD : 1.7.0 (40)
# BUGS : 11
# NOTES : Fixed mysql query failure with md5 passwords