Searched defs:new_aclp (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/setfacl/
H A Dsetfacl.c407 aclent_t *new_aclp; local
418 new_aclp = (aclent_t *)realloc(*aclpp,
421 new_aclp = (aclent_t *) malloc(sizeof (aclent_t) * (*cntp));
422 if (new_aclp == NULL) {
448 for (taclp = new_aclp; cur_cnt-- > 0; taclp++) {
459 memcpy(new_aclp + *cntp -1, &tmpacl, sizeof (aclent_t));
463 for (taclp = new_aclp; cur_cnt-- > 0; taclp++) {
483 memcpy(new_aclp + *cntp -1, &tmpacl, sizeof (aclent_t));
500 for (taclp = new_aclp; cur_cnt-- > 0; taclp++) {
523 *aclpp = new_aclp; /* retur
[all...]

Completed in 57 milliseconds