View | Details | Raw Unified | Return to bug 234413
Collapse All | Expand All

(-)b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c (-1 / +1 lines)
Lines 144-150 zfs_getquota(zfsvfs_t *zfsvfs, uid_t id, int isgroup, struct dqblk64 *dqp) Link Here
144
	quotaobj = isgroup ? zfsvfs->z_groupquota_obj : zfsvfs->z_userquota_obj;
144
	quotaobj = isgroup ? zfsvfs->z_groupquota_obj : zfsvfs->z_userquota_obj;
145
145
146
	if (quotaobj == 0 || zfsvfs->z_replay) {
146
	if (quotaobj == 0 || zfsvfs->z_replay) {
147
		error = ENOENT;
147
		error = EINVAL;
148
		goto done;
148
		goto done;
149
	}
149
	}
150
	(void)sprintf(buf, "%llx", (longlong_t)id);
150
	(void)sprintf(buf, "%llx", (longlong_t)id);

Return to bug 234413