summaryrefslogtreecommitdiff
path: root/mysys
diff options
context:
space:
mode:
authorunknown <jani@ua141d10.elisa.omakaista.fi>2007-03-27 18:51:02 +0300
committerunknown <jani@ua141d10.elisa.omakaista.fi>2007-03-27 18:51:02 +0300
commit454e889f44912774738b96ab9c1dcd5fb1c96288 (patch)
tree897580a34e89f06d53651b1779c990e687b5038c /mysys
parent137083e331e83d4ab3c2109807404ffd5c51120c (diff)
downloadmariadb-git-454e889f44912774738b96ab9c1dcd5fb1c96288.tar.gz
Fixes for 4.1 to be as in 5.0 and above.
client/mysql.cc: Fixed to be as in 5.0 and above. client/mysqldump.c: Fixed to be as in 5.0 and above. include/my_sys.h: Fixed to be as in 5.0 and above. mysys/my_static.c: Fixed to be as in 5.0 and above.
Diffstat (limited to 'mysys')
-rw-r--r--mysys/my_static.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysys/my_static.c b/mysys/my_static.c
index 5f034555156..041569c7f07 100644
--- a/mysys/my_static.c
+++ b/mysys/my_static.c
@@ -26,7 +26,8 @@
#endif
/* 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;