1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3-printing: fix broken print_job_get_name() return

Autobuild-User(master): David Disseldorp <ddiss@samba.org>
Autobuild-Date(master): Wed Jun 27 04:04:56 CEST 2012 on sn-devel-104
This commit is contained in:
David Disseldorp 2012-06-27 01:23:57 +02:00
parent efa73ba52a
commit 082b90674a

View File

@ -2027,7 +2027,8 @@ bool print_job_get_name(TALLOC_CTX *mem_ctx, const char *sharename, uint32_t job
return false;
}
return pjob->jobname;
*name = pjob->jobname;
return true;
}