summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-11-08 00:16:38 +0000
committerTim Potter <tpot@samba.org>2000-11-08 00:16:38 +0000
commite1cc6c85d793f5d86798eaf5ab452b11ed2f73bb (patch)
tree97214d23b9079e926999fb83f37405e061d8fec1
parentdd2f6f448de4dc2d9f2b8464bb1b0aa158d39ec5 (diff)
downloadsamba-e1cc6c85d793f5d86798eaf5ab452b11ed2f73bb.tar.gz
samba-e1cc6c85d793f5d86798eaf5ab452b11ed2f73bb.tar.bz2
samba-e1cc6c85d793f5d86798eaf5ab452b11ed2f73bb.zip
More merging of printing stuff from appliance.
(This used to be commit 18fa724a7969666dd5aa176af187054abc94bfd3)
-rw-r--r--source3/smbd/lanman.c6
1 files 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(&current_user, jobid))
+ if (print_job_delete(&current_user, jobid, &errcode))
errcode = NERR_Success;
break;
case 82: /* pause */
- if (print_job_pause(&current_user, jobid))
+ if (print_job_pause(&current_user, jobid, &errcode))
errcode = NERR_Success;
break;
case 83: /* resume */
- if (print_job_resume(&current_user, jobid))
+ if (print_job_resume(&current_user, jobid, &errcode))
errcode = NERR_Success;
break;
}