Commit c1825f20 authored by unknown's avatar unknown
Browse files

Fix ndb home path

parent b6425bc2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;