From: Michael R Sweet Date: Tue, 15 Oct 2019 20:51:07 +0000 (-0400) Subject: Add missing "-d" help string (Issue #5661) X-Git-Tag: v2.3.1~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fca9a9818dc71386b6dcdd9a58c28a6891fca1b5;p=thirdparty%2Fcups.git Add missing "-d" help string (Issue #5661) --- diff --git a/CHANGES.md b/CHANGES.md index 311c35409a..5cdfe75239 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,10 +1,11 @@ -CHANGES - 2.3.1 - 2019-10-07 +CHANGES - 2.3.1 - 2019-10-15 ============================ Changes in CUPS v2.3.1 ---------------------- +- Documentation updates (Issue #5661) - Added a workaround for the scheduler's systemd support (Issue #5640) - Fixed spelling of "fold-accordion". - Fixed the default common name for TLS certificates used by `ippeveprinter`. diff --git a/systemv/lp.c b/systemv/lp.c index ad22715b26..69bf9e438e 100644 --- a/systemv/lp.c +++ b/systemv/lp.c @@ -1,7 +1,7 @@ /* * "lp" command for CUPS. * - * Copyright © 2007-2018 by Apple Inc. + * Copyright © 2007-2019 by Apple Inc. * Copyright © 1997-2007 by Easy Software Products. * * Licensed under Apache License v2.0. See the file "LICENSE" for more @@ -749,6 +749,7 @@ usage(void) " lp [options] -i id")); _cupsLangPuts(stdout, _("Options:")); _cupsLangPuts(stdout, _("-c Make a copy of the print file(s)")); + _cupsLangPuts(stdout, _("-d destination Specify the destination printer or class")); _cupsLangPuts(stdout, _("-E Encrypt the connection to the server")); _cupsLangPuts(stdout, _("-h server[:port] Connect to the named server and port")); _cupsLangPuts(stdout, _("-H HH:MM Hold the job until the specified UTC time"));