forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes in 2.2.5 ================ * FIX: Fix errors searching volumes * NEW: Configurable symlink handling with a new volume option 'followsymlinks'. Setting the option causes afpd to follow symlinks on the server side. * UPD: Reload groups when reloading volumes. FR #71. * FIX: Fix a possible crash in cname() where cname_mtouname calls dirlookup() where the curdir is freed because the dircache detected a dev/inode cache difference and evicted the object from the cache. Fixes bug #498. * FIX: Change default FinderInfo for directories to be all 0, fixes bug 514.
- Loading branch information
hauke
committed
Jul 23, 2013
1 parent
a2a97f7
commit 09e67b3
Showing
4 changed files
with
34 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
$NetBSD: patch-etc_afpd_filedir.c,v 1.1 2013/07/23 13:28:17 hauke Exp $ | ||
|
||
--- etc/afpd/filedir.c.orig 2013-07-23 09:10:55.000000000 +0000 | ||
+++ etc/afpd/filedir.c | ||
@@ -372,7 +372,7 @@ static int moveandrename(const struct vo | ||
#ifdef HAVE_ATFUNCS | ||
opened = of_findnameat(sdir_fd, &path); | ||
#else | ||
- opened = of_findname(&path); | ||
+ opened = of_findname(sdir_fd, &path); | ||
#endif /* HAVE_ATFUNCS */ | ||
|
||
if (opened) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
$NetBSD: patch-include_atalk_acl.h,v 1.1 2013/07/23 13:28:17 hauke Exp $ | ||
|
||
--- include/atalk/acl.h.orig 2013-07-23 09:10:55.000000000 +0000 | ||
+++ include/atalk/acl.h | ||
@@ -53,7 +53,7 @@ extern int remove_acl_vfs(const char *na | ||
|
||
#else /* HAVE_ACLS=no */ | ||
|
||
-#define O_NETATALK_ACL | ||
+#define O_NETATALK_ACL 0 | ||
#define chmod_acl chmod | ||
|
||
#endif /* HAVE_ACLS */ |