Commit a2cc81a8 authored by sasha@mysql.sashanet.com's avatar sasha@mysql.sashanet.com
Browse files

fixed new bug in fn_format()

parent ef11c103
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ my_string fn_format(my_string to, const char *name, const char *dsk,
  if (flag & 16)
  {
    strmov(buff,to);
    my_symlink(to, buff, MYF(flag & 32 ? 0 : MY_RESOLVE_LINK));
    my_readlink(to, buff, MYF(flag & 32 ? 0 : MY_RESOLVE_LINK));
  }
  else if (flag & 32)
    my_realpath(to, to, MYF(flag & 32 ? 0 : MY_RESOLVE_LINK));