Commit 1de11aca by Russell Belfer

Merge pull request #810 from Steap/development

Fix libgit2 on GNU/Hurd.
parents b00e9216 296f60f5
......@@ -515,7 +515,7 @@ int git_path_direach(
return -1;
}
#ifdef __sun
#if defined(__sun) || defined(__GNU__)
de_buf = git__malloc(sizeof(struct dirent) + FILENAME_MAX + 1);
#else
de_buf = git__malloc(sizeof(struct dirent));
......@@ -569,7 +569,7 @@ int git_path_dirload(
return -1;
}
#ifdef __sun
#if defined(__sun) || defined(__GNU__)
de_buf = git__malloc(sizeof(struct dirent) + FILENAME_MAX + 1);
#else
de_buf = git__malloc(sizeof(struct dirent));
......
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