Fix bug #7288 - SMB job IDs in CUPS job names wrong.
commitc79ca41baf15b4ef7eb287d343b17a53ba41e852
authorJeremy Allison <jra@samba.org>
Fri, 26 Mar 2010 00:36:47 +0000 (25 17:36 -0700)
committerJeremy Allison <jra@samba.org>
Fri, 26 Mar 2010 00:36:47 +0000 (25 17:36 -0700)
treee11b760b6e6ad3532cf2629f85ede748ed40b208
parent2e00a8a74b7c5c95b61e6c7f365ed852c7d95289
Fix bug #7288 - SMB job IDs in CUPS job names wrong.

Based on a patch from Michael Karcher <samba@mkarcher.dialup.fu-berlin.de>.

I think this is the correct fix. It causes cups_job_submit to use
print_parse_jobid(), which I've moved into printing/lpq_parse.c (to allow the
link to work).

It turns out the old print_parse_jobid() was *broken*, in that the pjob
filename was set as an absolute path - not relative to the sharename (due to it
not going through the VFS calls).

This meant that the original code doing a strncmp on the first part of the
filename would always fail - it starts with a "/", not the relative pathname of
PRINT_SPOOL_PREFIX ("smbprn.").

This fix could fix some other mysterious printing bugs - probably the ones
Guenther noticed where job control fails on non-cups backends.

Guenther PLEASE CHECK !

Jeremy.
source3/include/proto.h
source3/printing/lpq_parse.c
source3/printing/print_cups.c
source3/printing/printing.c