Signed-off-by: Karel Zak <kzak@redhat.com>
errno = 0;
rc = mount_setattr(api->fd_tree, "", callflags, &attr, sizeof(attr));
- set_syscall_status(cxt, "move_setattr", rc == 0);
+ set_syscall_status(cxt, "mount_setattr", rc == 0);
if (rc && errno == EINVAL)
return -MNT_ERR_APPLYFLAGS;
}
DBG(OPTLIST, ul_debugobj(ls, "return attrs set=0x%08" PRIx64
- ", clr=0x%08" PRIx64, *set, *clr));
+ ", clr=0x%08" PRIx64 " %s",
+ *set, *clr,
+ rec == MNT_OL_REC ? "[rec]" :
+ rec == MNT_OL_NOREC ? "[norec]" : ""));
return 0;
}