diff options
author | 2002-10-09 15:12:02 +0000 | |
---|---|---|
committer | 2002-10-09 15:12:02 +0000 | |
commit | 173bebccefd97fbead4a6a48d2556835d1b337f5 (patch) | |
tree | 64c4bae6c6f168744d02c82d115260fa2039e431 /sys-apps/hfsplusutils/files | |
parent | removed firestarter-0.8 mask (diff) | |
download | historical-173bebccefd97fbead4a6a48d2556835d1b337f5.tar.gz historical-173bebccefd97fbead4a6a48d2556835d1b337f5.tar.bz2 historical-173bebccefd97fbead4a6a48d2556835d1b337f5.zip |
updated with gcc 3.2 patch and general cleanups
Diffstat (limited to 'sys-apps/hfsplusutils/files')
-rw-r--r-- | sys-apps/hfsplusutils/files/hfsplusutils-1.0.4-glob.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys-apps/hfsplusutils/files/hfsplusutils-1.0.4-glob.patch b/sys-apps/hfsplusutils/files/hfsplusutils-1.0.4-glob.patch new file mode 100644 index 000000000000..cd92d0a0a86d --- /dev/null +++ b/sys-apps/hfsplusutils/files/hfsplusutils-1.0.4-glob.patch @@ -0,0 +1,12 @@ +--- src/glob.c.orig 2002-10-09 08:02:31.000000000 -0500 ++++ src/glob.c 2002-10-09 08:02:46.000000000 -0500 +@@ -48,7 +48,7 @@ + + switch (*pat) + { +- case NULL: // pattern at end ++ case '\0': // pattern at end + return (!*str); // String at end ? + + case '*': // match all + |