1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-04 05:18:06 +03:00

Pass the vuid from the connection_struct to the printing back end functions.

This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent 73e4466fc3
commit a8975d6e22

View File

@ -41,7 +41,7 @@ files_struct *print_fsp_open(connection_struct *conn,char *jobname)
if(!fsp)
return NULL;
jobid = print_job_start(SNUM(conn), jobname);
jobid = print_job_start(SNUM(conn), conn->vuid, jobname);
if (jobid == -1) {
file_free(fsp);
return NULL;