diff options
author | Jeremy Allison <jra@samba.org> | 2012-02-17 14:12:40 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-02-18 06:22:40 +0100 |
commit | 21528da9cd12a4f5c3792a482a5d18fe946a6f7a (patch) | |
tree | 4b8c37725dd728e00f25a8b4e2e9b52d7ff7fd5a /source3/printing | |
parent | e786e8fef9960aadf1e94c70c0fb7ec18c1ed237 (diff) | |
download | samba-21528da9cd12a4f5c3792a482a5d18fe946a6f7a.tar.gz samba-21528da9cd12a4f5c3792a482a5d18fe946a6f7a.tar.bz2 samba-21528da9cd12a4f5c3792a482a5d18fe946a6f7a.zip |
Fix a bunch of "unused variable" warnings.
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Sat Feb 18 06:22:40 CET 2012 on sn-devel-104
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/print_iprint.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/source3/printing/print_iprint.c b/source3/printing/print_iprint.c index 1392cba7b8..1ff705a383 100644 --- a/source3/printing/print_iprint.c +++ b/source3/printing/print_iprint.c @@ -866,7 +866,6 @@ static int iprint_queue_get(const char *sharename, int job_id; /* job-id attribute */ int job_k_octets; /* job-k-octets attribute */ time_t job_time; /* time-at-creation attribute */ - time_t printer_current_time = 0; /* printer's current time */ time_t printer_up_time = 0; /* printer's uptime */ ipp_jstate_t job_status; /* job-status attribute */ int job_priority; /* job-priority attribute */ @@ -993,10 +992,6 @@ static int iprint_queue_get(const char *sharename, IPP_TAG_TEXT)) != NULL) fstrcpy(status->message, attr->values[0].string.text); - if ((attr = ippFindAttribute(response, "printer-current-time", - IPP_TAG_DATE)) != NULL) - printer_current_time = ippDateToTime(attr->values[0].date); - if ((attr = ippFindAttribute(response, "printer-up-time", IPP_TAG_INTEGER)) != NULL) printer_up_time = attr->values[0].integer; |