diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2008-09-06 22:36:25 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2008-09-06 22:36:25 +0000 |
commit | af7af4c86a5b7ce24d74e24ae6028875d341cc72 (patch) | |
tree | 4c2f42525edccc81c3e8b2f919f0e86e1dc2a2ad /games/holotz-castle/files/patch-JLib-JLib-Util-JFS.cpp | |
parent | Add entry for irc/quassel. (diff) |
- Update to 1.3.9
- Unbreak (now works without problems)
- Split patch for convenience
PR: 126870
Submitted by: me
Approved by: "Pierre-Paul Lavoie" <ppl@idios.org> (maintainer)
Notes
Notes:
svn path=/head/; revision=220028
Diffstat (limited to 'games/holotz-castle/files/patch-JLib-JLib-Util-JFS.cpp')
-rw-r--r-- | games/holotz-castle/files/patch-JLib-JLib-Util-JFS.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/games/holotz-castle/files/patch-JLib-JLib-Util-JFS.cpp b/games/holotz-castle/files/patch-JLib-JLib-Util-JFS.cpp new file mode 100644 index 000000000000..3fd9b8589df5 --- /dev/null +++ b/games/holotz-castle/files/patch-JLib-JLib-Util-JFS.cpp @@ -0,0 +1,13 @@ +--- JLib/JLib/Util/JFS.cpp.orig 2008-08-23 22:36:06.000000000 +0400 ++++ JLib/JLib/Util/JFS.cpp 2008-08-25 17:58:54.000000000 +0400 +@@ -886,8 +886,8 @@ + s32 n, k; + + // Si es un directorio lo importa recursivamente +- struct dirent64 **namelist; +- n = scandir64(filename, &namelist, 0, alphasort); ++ struct dirent **namelist; ++ n = scandir(filename, &namelist, 0, alphasort); + + if (n < 0) + { |