From e1cc6c85d793f5d86798eaf5ab452b11ed2f73bb Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 8 Nov 2000 00:16:38 +0000 Subject: More merging of printing stuff from appliance. (This used to be commit 18fa724a7969666dd5aa176af187054abc94bfd3) --- source3/smbd/lanman.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/smbd/lanman.c b/source3/smbd/lanman.c index 3b50960468..944a187ccc 100644 --- a/source3/smbd/lanman.c +++ b/source3/smbd/lanman.c @@ -1892,15 +1892,15 @@ static BOOL api_RDosPrintJobDel(connection_struct *conn,uint16 vuid, char *param switch (function) { case 81: /* delete */ - if (print_job_delete(¤t_user, jobid)) + if (print_job_delete(¤t_user, jobid, &errcode)) errcode = NERR_Success; break; case 82: /* pause */ - if (print_job_pause(¤t_user, jobid)) + if (print_job_pause(¤t_user, jobid, &errcode)) errcode = NERR_Success; break; case 83: /* resume */ - if (print_job_resume(¤t_user, jobid)) + if (print_job_resume(¤t_user, jobid, &errcode)) errcode = NERR_Success; break; } -- cgit