You've already forked macports-user-ged
mirror of
https://github.com/macports/macports-user-ged.git
synced 2026-07-12 18:18:35 -07:00
764f7e8ae0
git-svn-id: https://svn.macports.org/repository/macports/users/ged@64242 d073be05-634f-4543-b044-5fe20cf6d1d6
12 lines
478 B
Diff
12 lines
478 B
Diff
--- src/files_operators.c.orig 2009-12-09 08:45:44.000000000 -0800
|
|
+++ src/files_operators.c 2010-02-24 17:44:18.000000000 -0800
|
|
@@ -575,7 +575,7 @@
|
|
|
|
Debug("VerifyFinderType of %s for %s\n", file,a.perms.findertype);
|
|
|
|
-if (strncmp(a.perms.findertype,"*",CF_BUFSIZE) == 0 || strncmp(a.perms.findertype,"",CF_BUFSIZE) == 0)
|
|
+if (!a.perms.findertype || strncmp(a.perms.findertype,"*",CF_BUFSIZE) == 0 || strncmp(a.perms.findertype,"",CF_BUFSIZE) == 0)
|
|
{
|
|
return 0;
|
|
}
|