diff options
author | unknown <guilhem@gbichot4.local> | 2008-02-18 23:35:17 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot4.local> | 2008-02-18 23:35:17 +0100 |
commit | 34fff04d033e042ee89f7ffcd326285e59495c6a (patch) | |
tree | 02fdc79840b4f1bb2f1ceb90b37a47fc51a5aeed /storage/myisam/myisamlog.c | |
parent | d37d49bc543e933def3e460b1d6c156b3ec309cd (diff) | |
parent | 85213f6235aa344f7861cc2f9a151869e041cb9e (diff) | |
download | mariadb-git-34fff04d033e042ee89f7ffcd326285e59495c6a.tar.gz |
Merge gbichot4.local:/home/mysql_src/mysql-5.1-build-gca
into gbichot4.local:/home/mysql_src/mysql-maria-monty
client/mysqldump.c:
Auto merged
client/mysqltest.c:
Auto merged
extra/replace.c:
Auto merged
include/my_sys.h:
Auto merged
libmysql/libmysql.c:
Auto merged
mysys/my_getopt.c:
Auto merged
mysys/thr_lock.c:
Auto merged
sql/set_var.cc:
Auto merged
sql/sql_plugin.cc:
Auto merged
storage/myisam/mi_check.c:
Auto merged
storage/myisam/mi_dynrec.c:
Auto merged
storage/myisam/mi_search.c:
Auto merged
storage/myisam/mi_update.c:
Auto merged
storage/myisam/mi_write.c:
Auto merged
storage/myisam/myisamlog.c:
Auto merged
storage/myisam/myisampack.c:
Auto merged
tests/mysql_client_test.c:
Auto merged
include/my_global.h:
merge
storage/myisam/myisamdef.h:
merge
Diffstat (limited to 'storage/myisam/myisamlog.c')
-rw-r--r-- | storage/myisam/myisamlog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/myisam/myisamlog.c b/storage/myisam/myisamlog.c index 04c0d9543d7..6e681676c12 100644 --- a/storage/myisam/myisamlog.c +++ b/storage/myisam/myisamlog.c @@ -35,7 +35,7 @@ struct file_info { char *name, *show_name; uchar *record; MI_INFO *isam; - bool closed,used; + my_bool closed, used; ulong accessed; }; @@ -67,7 +67,7 @@ static int close_some_file(TREE *tree); static int reopen_closed_file(TREE *tree,struct file_info *file_info); static int find_record_with_key(struct file_info *file_info,uchar *record); static void printf_log(const char *str,...); -static bool cmp_filename(struct file_info *file_info,char * name); +static my_bool cmp_filename(struct file_info *file_info,char * name); static uint verbose=0,update=0,test_info=0,max_files=0,re_open_count=0, recover=0,prefix_remove=0,opt_processes=0; @@ -839,7 +839,7 @@ static void printf_log(const char *format,...) } -static bool cmp_filename(struct file_info *file_info, char * name) +static my_bool cmp_filename(struct file_info *file_info, char * name) { if (!file_info) return 1; |