diff options
author | Günther Deschner <gd@samba.org> | 2009-03-12 11:00:21 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-03-12 14:47:31 +0100 |
commit | 4b57f6dd34d1ddbdc7b011de1ea7041ec8215dec (patch) | |
tree | 8ac71964b483e104ece3dc443f7c2d06d17f5767 /source3/include | |
parent | 2f579200fb439693540ada6e098959aa2d5f414e (diff) | |
download | samba-4b57f6dd34d1ddbdc7b011de1ea7041ec8215dec.tar.gz samba-4b57f6dd34d1ddbdc7b011de1ea7041ec8215dec.tar.bz2 samba-4b57f6dd34d1ddbdc7b011de1ea7041ec8215dec.zip |
s3-spoolss: make jobname a const char * in print_job_start().
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index a1cafb6837..c8a066fa36 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4928,7 +4928,7 @@ bool print_job_resume(struct auth_serversupplied_info *server_info, int snum, ssize_t print_job_write(int snum, uint32 jobid, const char *buf, SMB_OFF_T pos, size_t size); int print_queue_length(int snum, print_status_struct *pstatus); uint32 print_job_start(struct auth_serversupplied_info *server_info, int snum, - char *jobname, NT_DEVICEMODE *nt_devmode ); + const char *jobname, NT_DEVICEMODE *nt_devmode ); void print_job_endpage(int snum, uint32 jobid); bool print_job_end(int snum, uint32 jobid, enum file_close_type close_type); int print_queue_status(int snum, |