aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/fchownat.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/guts/fchownat.c')
-rw-r--r--ports/unix/guts/fchownat.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/ports/unix/guts/fchownat.c b/ports/unix/guts/fchownat.c
index f976d91..295726b 100644
--- a/ports/unix/guts/fchownat.c
+++ b/ports/unix/guts/fchownat.c
@@ -36,14 +36,12 @@
if (owner == (uid_t) -1 || group == (gid_t) -1) {
msg = pseudo_client_op(OP_STAT, 0, -1, -1, path, &buf);
/* copy in any existing values... */
- if (msg) {
- if (msg->result == RESULT_SUCCEED) {
- pseudo_stat_msg(&buf, msg);
- } else {
- pseudo_debug(PDBGF_FILE, "chownat to %d:%d on %d/%s, ino %llu, new file.\n",
- owner, group, dirfd, path,
- (unsigned long long) buf.st_ino);
- }
+ if (msg && msg->result == RESULT_SUCCEED) {
+ pseudo_stat_msg(&buf, msg);
+ } else {
+ pseudo_debug(PDBGF_FILE, "chownat to %d:%d on %d/%s, ino %llu, new file.\n",
+ owner, group, dirfd, path,
+ (unsigned long long) buf.st_ino);
}
}
/* now override with arguments */