ObjFW  Diff

Differences From Artifact [0b00f53cf5]:

To Artifact [2d53fe58fd]:


75
76
77
78
79
80
81
82
83
84
85
86

87
88
89
90

91
92
93
94

95
96
97
98
99
100
101
102
103
104
105
75
76
77
78
79
80
81



82

83
84
85
86

87
88
89
90

91
92
93


94
95
96
97
98
99
100







-
-
-

-
+



-
+



-
+


-
-







	[_group release];

	[super dealloc];
}

- (OFString*)description
{
	if (_description != nil)
		return _description;

	if (_group == nil)
		_description = [[OFString alloc] initWithFormat:
		return [OFString stringWithFormat:
		    @"Failed to change owner for file %@ to %@ in class %@! "
		    ERRFMT, _path, _owner, _inClass, ERRPARAM];
	else if (_owner == nil)
		_description = [[OFString alloc] initWithFormat:
		return [OFString stringWithFormat:
		    @"Failed to change group for file %@ to %@ in class %@! "
		    ERRFMT, _path, _group, _inClass, ERRPARAM];
	else
		_description = [[OFString alloc] initWithFormat:
		return [OFString stringWithFormat:
		    @"Failed to change owner for file %@ to %@:%@ in class %@! "
		    ERRFMT, _path, _owner, _group, _inClass, ERRPARAM];

	return _description;
}

- (int)errNo
{
	return _errNo;
}