From 639453196dd9f71a86e61d2c83e2e8ae0d8bf45f Mon Sep 17 00:00:00 2001 From: Antoine Verheijen Date: Mon, 8 Apr 2013 20:51:52 -0600 Subject: [PATCH] Increase size of space for ACL in "up" command. The amount of space allocated for use by the pioctl call to obtain the ACL for the source directory in the "up" command is not large enough and the call fails when access lists get sufficiently large. This change increases the size of the space provided to pioctl to the maximum possible. This allows for much larger access lists and is consistent with a similar call in the "fs listacl" command). Change-Id: I177387e7346a9e2788f3556fd8754a7f93a2794b Reviewed-on: http://gerrit.openafs.org/9753 Reviewed-by: Jeffrey Altman Reviewed-by: Derrick Brashear Tested-by: BuildBot --- src/venus/up.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/venus/up.c b/src/venus/up.c index d7ee2a652..9334f0f6f 100644 --- a/src/venus/up.c +++ b/src/venus/up.c @@ -25,7 +25,7 @@ /* ************************************************************* */ -#define MAXACL 400 +#define MAXACL AFS_PIOCTL_MAXSIZE short verbose = 0; short renameTargets = 0; -- 2.39.5