On Tue, Jan 29, 2013 at 6:17 AM, Jeff Layton <jlayton@xxxxxxxxx> wrote: > Jian pointed out that this loop can cycle infinitely when the string > contains a ','. > > Also, fix typo in manpage that shows a trailing ',' in one example. > > Reported-by: Jian Li <jiali@xxxxxxxxxx> > Signed-off-by: Jeff Layton <jlayton@xxxxxxxxx> > --- > setcifsacl.1.in | 2 +- > setcifsacl.c | 4 +++- > 2 files changed, 4 insertions(+), 2 deletions(-) > > diff --git a/setcifsacl.1.in b/setcifsacl.1.in > index 5ede36a..d53a6ec 100644 > --- a/setcifsacl.1.in > +++ b/setcifsacl.1.in > @@ -94,7 +94,7 @@ Set an ACL > .br > setcifsacl -S "ACL:CIFSTESTDOM\\Administrator:0x0/0x0/FULL, > .br > -ACL:CIFSTESTDOM\\user2:0x0/0x0/FULL," <file_name> > +ACL:CIFSTESTDOM\\user2:0x0/0x0/FULL" <file_name> > .PP > .SH "NOTES" > .PP > diff --git a/setcifsacl.c b/setcifsacl.c > index 211c1af..7f92b91 100644 > --- a/setcifsacl.c > +++ b/setcifsacl.c > @@ -642,8 +642,10 @@ get_numcaces(const char *aces) > const char *current; > > current = aces; > - while((current = strchr(current, ','))) > + while((current = strchr(current, ','))) { > + ++current; > ++num; > + } > > return num; > } > -- > 1.7.11.7 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-cifs" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html Jeff, Jian, is there a test case where error can be reproduced? I tried something like this and not run into the problem. # getcifsacl /mnt/smb_a/file2 REVISION:0x1 CONTROL:0x8004 OWNER:S-1-5-32-544 GROUP:S-1-5-21-2442293536-40736039-234543059-513 ACL:S-1-5-32-544:ALLOWED/0x0/FULL ACL:S-1-5-18:ALLOWED/0x0/FULL # setcifsacl -D "ACL:S-1-5-32-544:ALLOWED/0x0/FULL,ACL:S-1-5-18:ALLOWED/0x0/FULL" /mnt/smb_a/file2 # getcifsacl /mnt/smb_a/file2REVISION:0x1 CONTROL:0x8004 OWNER:S-1-5-32-544 GROUP:S-1-5-21-2442293536-40736039-234543059-513 # setcifsacl -a "ACL:S-1-5-32-544:ALLOWED/0x0/FULL,ACL:S-1-5-18:ALLOWED/0x0/FULL" /mnt/smb_a/file2 # getcifsacl /mnt/smb_a/file2REVISION:0x1 CONTROL:0x8004 OWNER:S-1-5-32-544 GROUP:S-1-5-21-2442293536-40736039-234543059-513 ACL:S-1-5-32-544:ALLOWED/0x0/FULL ACL:S-1-5-18:ALLOWED/0x0/FULL # setcifsacl -D "ACL:S-1-5-32-544:ALLOWED/0x0/FULL,ACL:S-1-5-18:ALLOWED/0x0/FULL," /mnt/smb_a/file2 parse_cmdline_aces: Error 22 parsing ACEs Regards, Shirish -- To unsubscribe from this list: send the line "unsubscribe linux-cifs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html