* setfacl.c (main): Place a single : after other and mask.

* getfacl.c (getaclentry): Allow both : and :: for other and mask.
	(main): Remove extraneous break.
This commit is contained in:
Corinna Vinschen
2002-12-15 10:09:35 +00:00
parent bd2001aec0
commit 2b3ddfcd26
3 changed files with 11 additions and 5 deletions

View File

@ -244,10 +244,10 @@ main (int argc, char **argv)
printf ("group:%s:", groupname (acls[i].a_id));
break;
case CLASS_OBJ:
printf ("mask::");
printf ("mask:");
break;
case OTHER_OBJ:
printf ("other::");
printf ("other:");
break;
}
printf ("%s\n", permstr (acls[i].a_perm));