diff options
author | hf@deer.(none) <> | 2004-09-07 11:55:34 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2004-09-07 11:55:34 +0500 |
commit | c0458bb3b67a8d8cb403e6053ef7dfe627d74286 (patch) | |
tree | e7c329902080841ee5657b450f9c954f44bb920a /mysys | |
parent | ea5fd2b4bbaa10b4885855b2b46b3687a0f7cda8 (diff) | |
download | mariadb-git-c0458bb3b67a8d8cb403e6053ef7dfe627d74286.tar.gz |
A set of mysql_home_path-related fixes
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/mf_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/mf_format.c b/mysys/mf_format.c index 114e19759c8..d1ca1108d02 100644 --- a/mysys/mf_format.c +++ b/mysys/mf_format.c @@ -42,7 +42,7 @@ my_string fn_format(my_string to, const char *name, const char *dir, /* Use given directory */ convert_dirname(dev,dir,NullS); /* Fix to this OS */ } - else if ((flag & MY_RELATIVE_PATH) && !test_if_hard_path(name)) + else if ((flag & MY_RELATIVE_PATH) && !test_if_hard_path(dev)) { /* Put 'dir' before the given path */ strmake(buff,dev,sizeof(buff)-1); |