]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Backends needing to load OS X kernel extensions did not work
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Tue, 27 Jan 2015 21:21:32 +0000 (21:21 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Tue, 27 Jan 2015 21:21:32 +0000 (21:21 +0000)
(<rdar://problem/19015679>)

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12426 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES-2.0.txt
scheduler/process.c

index bc8444a0391ff521e93784d4d8779d473c635678..d3930abe6fee17705a4dc9c15ada09643889267f 100644 (file)
@@ -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
+         (<rdar://problem/19015679>)
 
 
 CHANGES IN CUPS V2.0.1
index e4d897c296c1a0db4cdb820f5cc613f852e20985..b10280eda2bfd07e9e84e87911fa2a0ded9b9ea7 100644 (file)
@@ -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
   {