From: msweet Date: Tue, 27 Jan 2015 21:21:32 +0000 (+0000) Subject: Backends needing to load OS X kernel extensions did not work X-Git-Tag: v2.2b1~379 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e6611efe9821140d8b7c05916ae6827f1eee200;p=thirdparty%2Fcups.git Backends needing to load OS X kernel extensions did not work () git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12426 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/CHANGES-2.0.txt b/CHANGES-2.0.txt index bc8444a039..d3930abe6f 100644 --- a/CHANGES-2.0.txt +++ b/CHANGES-2.0.txt @@ -20,6 +20,8 @@ CHANGES IN CUPS V2.0.2 - Fixed an OpenBSD charset transcoding issue. - Fixed USB printing on OpenBSD (STR #4525) - The --without-xinetd configure option did not work (STR #4542) + - Backends needing to load OS X kernel extensions did not work + () CHANGES IN CUPS V2.0.1 diff --git a/scheduler/process.c b/scheduler/process.c index e4d897c296..b10280eda2 100644 --- a/scheduler/process.c +++ b/scheduler/process.c @@ -323,6 +323,9 @@ cupsdCreateProfile(int job_id, /* I - Job ID or 0 for none */ /* Also allow access to device files... */ cupsFilePuts(fp, "(allow file-write* file-read-data file-read-metadata file-ioctl\n" " (regex #\"^/dev/\"))\n"); + + /* And allow kernel extensions to be loaded, e.g., SMB */ + cupsFilePuts(fp, "(allow system-kext-load)\n"); } else {