Lines Matching defs:rppath
942 char rppath[MAXPATHLEN]; /* resolved parent path */
1062 if ((res = resolvepath(ppath, rppath, sizeof (rppath))) == -1) {
1066 rppath[res] = '\0';
1067 if ((res = stat(rppath, &stbuf)) != 0) {
1068 zperror(rppath, B_FALSE);
1074 rppath);
1079 rppath);
1082 err |= bad_mode_bit(stbuf.st_mode, S_IRUSR, B_TRUE, rppath);
1083 err |= bad_mode_bit(stbuf.st_mode, S_IWUSR, B_TRUE, rppath);
1084 err |= bad_mode_bit(stbuf.st_mode, S_IXUSR, B_TRUE, rppath);
1085 err |= bad_mode_bit(stbuf.st_mode, S_IWGRP, B_FALSE, rppath);
1086 err |= bad_mode_bit(stbuf.st_mode, S_IWOTH, B_FALSE, rppath);
1087 if (strcmp(rpath, rppath) == 0) {
1089 rppath);