Changeset 566
- Timestamp:
- 03/01/07 19:27:59 (2 years ago)
- Files:
-
- trunk/src/vcd/methods/vx/vx_create.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/vcd/methods/vx/vx_create.c
r561 r566 190 190 } 191 191 192 if (do_chmod && fchmodat(vdirfd, fpath, sb->st_mode, 0) == -1) {193 method_set_sys_faultf(global_env, "fchmodat(%s)", fpath);194 return FTW_STOP;195 }196 197 192 if (do_chown && fchownat(vdirfd, fpath, sb->st_uid, 198 193 sb->st_gid, AT_SYMLINK_NOFOLLOW) == -1) { 199 194 method_set_sys_faultf(global_env, "fchownat(%s)", fpath); 195 return FTW_STOP; 196 } 197 198 if (do_chmod && fchmodat(vdirfd, fpath, sb->st_mode, 0) == -1) { 199 method_set_sys_faultf(global_env, "fchmodat(%s)", fpath); 200 200 return FTW_STOP; 201 201 }
