Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 93389
Collapse All | Expand All

(-)attr-2.4.22/libattr/attr_copy_file.c (-3 / +3 lines)
Lines 138-146 Link Here
138
		if (lsetxattr (dst_path, name, value, size, 0) != 0)
138
		if (lsetxattr (dst_path, name, value, size, 0) != 0)
139
		{
139
		{
140
			const char *qpath = quote (ctx, dst_path);
140
			const char *qpath = quote (ctx, dst_path);
141
			if (errno == ENOSYS) {
141
			if (errno == ENOSYS || errno == EOPNOTSUPP) {
142
				error (ctx, _("setting attributes for %s"),
142
				error (ctx, _("setting attributes for %s; "
143
				       qpath);
143
				       "metadata will be lost"), qpath);
144
				ret = -1;
144
				ret = -1;
145
				break;  /* no hope of getting any further */
145
				break;  /* no hope of getting any further */
146
			} else {
146
			} else {

Return to bug 93389