diff options
author | Tim Potter <tpot@samba.org> | 2000-11-08 00:16:38 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-11-08 00:16:38 +0000 |
commit | e1cc6c85d793f5d86798eaf5ab452b11ed2f73bb (patch) | |
tree | 97214d23b9079e926999fb83f37405e061d8fec1 /source3/smbd | |
parent | dd2f6f448de4dc2d9f2b8464bb1b0aa158d39ec5 (diff) | |
download | samba-e1cc6c85d793f5d86798eaf5ab452b11ed2f73bb.tar.gz samba-e1cc6c85d793f5d86798eaf5ab452b11ed2f73bb.tar.bz2 samba-e1cc6c85d793f5d86798eaf5ab452b11ed2f73bb.zip |
More merging of printing stuff from appliance.
(This used to be commit 18fa724a7969666dd5aa176af187054abc94bfd3)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/lanman.c | 6 |
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(¤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; } |