From: David Disseldorp Date: Thu, 30 Oct 2014 00:37:51 +0000 (+0100) Subject: spoolss: remove unused fill_job_info3() X-Git-Tag: samba-4.0.23~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5632bd110acce4a2f931ba8c06a9d310a5370d49;p=thirdparty%2Fsamba.git spoolss: remove unused fill_job_info3() This logic has been moved into the previous EnumJobs(level=3) caller. The info3 structure only contains two fields that are used, so it doesn't make sense to have a separate helper for it. Signed-off-by: David Disseldorp Reviewed-by: Jeremy Allison (cherry picked from commit d772b98283f289917a6a8370808d4d0912899384) --- diff --git a/source3/rpc_server/spoolss/srv_spoolss_nt.c b/source3/rpc_server/spoolss/srv_spoolss_nt.c index ee47a067bd7..976aab8f8a7 100644 --- a/source3/rpc_server/spoolss/srv_spoolss_nt.c +++ b/source3/rpc_server/spoolss/srv_spoolss_nt.c @@ -7134,27 +7134,6 @@ static WERROR fill_job_info2(TALLOC_CTX *mem_ctx, return WERR_OK; } -/**************************************************************************** -fill_job_info3 -****************************************************************************/ - -static WERROR fill_job_info3(TALLOC_CTX *mem_ctx, - struct spoolss_JobInfo3 *r, - const print_queue_struct *queue, - const print_queue_struct *next_queue, - int position, int snum, - struct spoolss_PrinterInfo2 *pinfo2) -{ - r->job_id = queue->sysjob; - r->next_job_id = 0; - if (next_queue) { - r->next_job_id = next_queue->sysjob; - } - r->reserved = 0; - - return WERR_OK; -} - /**************************************************************************** Enumjobs at level 1. ****************************************************************************/