diff options
author | monty@mishka.local <> | 2005-07-31 12:49:55 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2005-07-31 12:49:55 +0300 |
commit | 8437e9c1be5b925a46640302a391af9c9cf83a30 (patch) | |
tree | c4df327e7bc6c594e03c6454dddbc63a93203c6a /mysys/my_static.c | |
parent | e60d786dde7bfec95a16967bb57d8c570af8ac9e (diff) | |
download | mariadb-git-8437e9c1be5b925a46640302a391af9c9cf83a30.tar.gz |
Fixes during review of new pushed code
Change bool in C code to my_bool
Added to mysqltest --enable_parsning and --disable_parsing to avoid to have to comment parts of tests
Added comparison of LEX_STRING's and use this to compare file types for view and trigger files.
Diffstat (limited to 'mysys/my_static.c')
-rw-r--r-- | mysys/my_static.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysys/my_static.c b/mysys/my_static.c index 8207463ea50..8448afdc158 100644 --- a/mysys/my_static.c +++ b/mysys/my_static.c @@ -28,7 +28,8 @@ my_bool timed_mutexes= 0; /* from my_init */ -my_string home_dir=0,my_progname=0; +my_string home_dir=0; +const char *my_progname=0; char NEAR curr_dir[FN_REFLEN]= {0}, NEAR home_dir_buff[FN_REFLEN]= {0}; ulong my_stream_opened=0,my_file_opened=0, my_tmp_file_created=0; |