diff options
author | Simo Sorce <ssorce@redhat.com> | 2010-05-07 10:37:48 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2010-07-27 10:27:14 -0400 |
commit | f5a2f8fa2b66d23eb2e99443f6d6bb85b6199b63 (patch) | |
tree | b9c1c354f602d4c5b6235bfa8c14d7acdeb8c02f /source3/printing | |
parent | 21cd59e7a5b319a8800c904d21f0d1e885acc7fb (diff) | |
download | samba-f5a2f8fa2b66d23eb2e99443f6d6bb85b6199b63.tar.gz samba-f5a2f8fa2b66d23eb2e99443f6d6bb85b6199b63.tar.bz2 samba-f5a2f8fa2b66d23eb2e99443f6d6bb85b6199b63.zip |
s3-printing: Removed unused function print_job_fd().
Signed-off-by: Jim McDonough <jmcd@samba.org>
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/printing.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c index 3525f8dc3a..b620db03d5 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -1815,21 +1815,6 @@ bool print_job_exists(const char* sharename, uint32 jobid) } /**************************************************************************** - Give the fd used for a jobid. -****************************************************************************/ - -int print_job_fd(const char* sharename, uint32 jobid) -{ - struct printjob *pjob = print_job_find(sharename, jobid); - if (!pjob) - return -1; - /* don't allow another process to get this info - it is meaningless */ - if (pjob->pid != sys_getpid()) - return -1; - return pjob->fd; -} - -/**************************************************************************** Give the filename used for a jobid. Only valid for the process doing the spooling and when the job has not been spooled. |