Commit 3522126c authored by unknown's avatar unknown

Fix ndb home path

parent 8aee2005
......@@ -32,7 +32,7 @@ NdbConfig_AllocHomePath(int _len)
len+= path_len;
buf= malloc(len);
if (path_len > 0)
snprintf(buf, len, "%s%c", path, DIR_SEPARATOR);
snprintf(buf, len, "%s%s", path, DIR_SEPARATOR);
else
buf[0]= 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment