summaryrefslogtreecommitdiff
path: root/sql/log.cc
diff options
context:
space:
mode:
authormonty@mishka.local <>2005-07-18 15:33:18 +0300
committermonty@mishka.local <>2005-07-18 15:33:18 +0300
commit78c65b5adc2b5a7160820ceed8273b684cc1e8e8 (patch)
tree1505fc52926154e1f91d7d822237aa1b9352cb3f /sql/log.cc
parent774916a902fd33a0d1260e9dd5dc9ecd181a8703 (diff)
downloadmariadb-git-78c65b5adc2b5a7160820ceed8273b684cc1e8e8.tar.gz
Cleanups during review
Changed defaults option --instance to --defaults-group-suffix Changed option handling to allow --defaults-file, --defaults-extra-file and --defaults-group-suffix to be given in any order Changed MYSQL_INSTANCE to MYSQL_GROUP_SUFFIX mysql_print_defaults now understands --defaults-group-suffix Remove usage of my_tempnam() (not safe function) if( -> if ( and while( to while (
Diffstat (limited to 'sql/log.cc')
-rw-r--r--sql/log.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log.cc b/sql/log.cc
index e69c0af15bd..6369699378b 100644
--- a/sql/log.cc
+++ b/sql/log.cc
@@ -2647,7 +2647,7 @@ int TC_LOG_MMAP::log(THD *thd, my_xid xid)
{ // somebody's syncing. let's wait
p->waiters++;
/*
- note - it must be while(), not do ... while() here
+ note - it must be while (), not do ... while () here
as p->state may be not DIRTY when we come here
*/
while (p->state == DIRTY && syncing)