Fix syntax error when supergroups are not enabled

1f22cab broke non-supergroups builds due to incorrect brace placement.
Move the correct closing brace outside of the #ifdef.

Change-Id: I2ed3f8f57b35f0030e26306f7e791ea6b5158c9a
Reviewed-on: http://gerrit.openafs.org/2038
Reviewed-by: Russ Allbery <rra@stanford.edu>
Tested-by: Russ Allbery <rra@stanford.edu>
This commit is contained in:
Russ Allbery 2010-05-26 16:47:49 -05:00
parent 916699ed41
commit 5698becfff

View File

@ -297,9 +297,8 @@ main(int argc, char **argv)
} else if ((strncmp(arg, "-groupdepth", alen) == 0) } else if ((strncmp(arg, "-groupdepth", alen) == 0)
|| (strncmp(arg, "-depth", alen) == 0)) { || (strncmp(arg, "-depth", alen) == 0)) {
depthsg = atoi(argv[++a]); /* Max search depth for supergroups */ depthsg = atoi(argv[++a]); /* Max search depth for supergroups */
}
#endif #endif
else if (strncmp(arg, "-default_access", alen) == 0) { } else if (strncmp(arg, "-default_access", alen) == 0) {
prp_user_default = prp_access_mask(argv[++a]); prp_user_default = prp_access_mask(argv[++a]);
prp_group_default = prp_access_mask(argv[++a]); prp_group_default = prp_access_mask(argv[++a]);
} }