Skip Menu |

This queue is for tickets about the Solaris-ACL CPAN distribution.

Report information
The Basics
Id: 2846
Status: open
Priority: 0/
Queue: Solaris-ACL

People
Owner: Nobody in particular
Requestors: rudolph [...] usyd.edu.au
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: calc_mask doesn't work as expected
calc_mask doesn't calculate/set the mask appropriately given the users/groups/permissions set in the acl. The cause is a return that's a little too early in calc_mask (ACL.pm): sub calc_mask { ... foreach $type ('users', 'groups') { if(defined $acl->{$type}) { foreach $uid (keys(%{$acl->{$type}})) { $acl->{'mask'} |= $acl->{$type}->{$uid}; } } Show quoted text
>>> return $acl->{'mask'};
} } this will only traverse the lists of users/groups once before returning from the function - i.e groups won't be considered. The indicated line (return) should be moved to be below the following brace
Subject: Re: [rt.cpan.org #2846] calc_mask doesn't work as expected
Date: Tue, 12 Aug 2008 10:43:41 -0400
To: bug-Solaris-ACL [...] rt.cpan.org
From: J Chapman Flack <jflack [...] math.purdue.edu>
I can confirm this bug, and that the fix provided in the original report is correct. That report was made five years ago. Has anyone heard from the maintainer? Chapman Flack mathematics Purdue
From: cam [...] mrlane.com
I'm pretty sure the maintainer is: http://robertson.mse.uiuc.edu/contact.html On Tue Aug 12 10:44:04 2008, jflack@math.purdue.edu wrote: Show quoted text
> > I can confirm this bug, and that the fix provided in the original report > is correct. That report was made five years ago. Has anyone heard from > the maintainer? > > Chapman Flack > mathematics > Purdue >
Sorry - I'm the "maintainer" for this project, but haven't worked on it in years (in part because I no longer have access to Solaris machines). If someone wants to take this over, please let me know, and we'll figure out what needs to be done to make that happen. On Tue Oct 28 14:34:53 2008, kionysus wrote: Show quoted text
> I'm pretty sure the maintainer is: > > http://robertson.mse.uiuc.edu/contact.html > > > > On Tue Aug 12 10:44:04 2008, jflack@math.purdue.edu wrote:
> > > > I can confirm this bug, and that the fix provided in the original report > > is correct. That report was made five years ago. Has anyone heard from > > the maintainer? > > > > Chapman Flack > > mathematics > > Purdue > >
> >