ObjFW  Diff

Differences From Artifact [b7ac34eb59]:

To Artifact [21eb2e1748]:


170
171
172
173
174
175
176

177
178
179
180
181
182
183
	OFSandbox *sandbox = [[OFSandbox alloc] init];
	@try {
		[sandbox setAllowsStdIO: true];
		[sandbox setAllowsReadingFiles: true];
		[sandbox setAllowsWritingFiles: true];
		[sandbox setAllowsCreatingFiles: true];
		[sandbox setAllowsChangingFileAttributes: true];


		[OFApplication activateSandbox: sandbox];
	} @finally {
		[sandbox release];
	}
#endif








>







170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
	OFSandbox *sandbox = [[OFSandbox alloc] init];
	@try {
		[sandbox setAllowsStdIO: true];
		[sandbox setAllowsReadingFiles: true];
		[sandbox setAllowsWritingFiles: true];
		[sandbox setAllowsCreatingFiles: true];
		[sandbox setAllowsChangingFileAttributes: true];
		[sandbox setAllowsUserDatabaseReading: true];

		[OFApplication activateSandbox: sandbox];
	} @finally {
		[sandbox release];
	}
#endif