1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

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

(This used to be commit a8975d6e226e7271f60d5487243301db3c220d87)
This commit is contained in:
Tim Potter 2000-06-16 08:24:45 +00:00
parent 0630db580a
commit a72c9e2080

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;