From 8ddb0f601e46c9c3c42cb1871f7e558d546d35f4 Mon Sep 17 00:00:00 2001 From: msweet Date: Wed, 9 Mar 2016 14:35:57 +0000 Subject: [PATCH] Fix builds on Linux. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@13127 a1ca3aef-8c08-0410-bb20-df032aa958be --- cups/dest.c | 2 +- doc/help/man-cupsd.html | 16 +++++++++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/cups/dest.c b/cups/dest.c index 1682346b4..10705065a 100644 --- a/cups/dest.c +++ b/cups/dest.c @@ -3571,7 +3571,7 @@ cups_dnssd_resolve_cb(void *context) /* I - Resolve data */ gettimeofday(&curtime, NULL); - DEBUG_printf(("4cups_dnssd_resolve_cb: curtime=%d.%06d, end_time=%d.%06d", (int)curtime.tv_sec, curtime.tv_usec, (int)resolve->end_time.tv_sec, resolve->end_time.tv_usec)); + DEBUG_printf(("4cups_dnssd_resolve_cb: curtime=%d.%06d, end_time=%d.%06d", (int)curtime.tv_sec, (int)curtime.tv_usec, (int)resolve->end_time.tv_sec, (int)resolve->end_time.tv_usec)); return (curtime.tv_sec < resolve->end_time.tv_sec || (curtime.tv_sec == resolve->end_time.tv_sec && diff --git a/doc/help/man-cupsd.html b/doc/help/man-cupsd.html index de1294217..009485128 100644 --- a/doc/help/man-cupsd.html +++ b/doc/help/man-cupsd.html @@ -13,7 +13,7 @@ cupsd - cups scheduler cupsd [ -c -config-file +cupsd.conf ] [ -f ] [ @@ -23,17 +23,20 @@ cupsd - cups scheduler ] [ -l ] [ +-s +cups-files.conf +] [ -t ]

Description

cupsd -is the scheduler for CUPS. It implements a printing system based upon the Internet Printing Protocol, version 2.1. If no options are specified on the command-line then the default configuration file +is the scheduler for CUPS. It implements a printing system based upon the Internet Printing Protocol, version 2.1, and supports most of the requirements for IPP Everywhere. If no options are specified on the command-line then the default configuration file /etc/cups/cupsd.conf will be used.

Options

-
-c config-file -
Uses the named configuration file. +
-c cupsd.conf +
Uses the named cupsd.conf configuration file.
-f
Run cupsd @@ -54,6 +57,8 @@ when it is run from launchd(8) or systemd(8). +
-s cups-files.conf +
Uses the named cups-files.conf configuration file.
-t
Test the configuration file for syntax errors.
@@ -99,6 +104,7 @@ in the foreground with a test configuration file called backend(7), classes.conf(5), cups(1), +cups-files.conf(5), cups-lpd(8), cupsd.conf(5), cupsd-helper(8), @@ -111,7 +117,7 @@ in the foreground with a test configuration file called systemd(8), CUPS Online Help (http://localhost:631/help)

Copyright

-Copyright © 2007-2015 by Apple Inc. +Copyright © 2007-2016 by Apple Inc. -- 2.39.2