summaryrefslogtreecommitdiff
path: root/systemv/lp.c
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2010-11-30 03:16:24 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2010-11-30 03:16:24 +0000
commit0837b7e828b9fc312fcf8f5741d2ba9683742672 (patch)
tree1209ad6c3a50b6fc8c2e7fdc4ce05445f17f1d86 /systemv/lp.c
parent1106b00e75e37e7f25a28ee95da560de55520018 (diff)
downloadcups-0837b7e828b9fc312fcf8f5741d2ba9683742672.tar.gz
Merge changes from CUPS 1.5svn-r9385.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@2873 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'systemv/lp.c')
-rw-r--r--systemv/lp.c110
1 files changed, 47 insertions, 63 deletions
diff --git a/systemv/lp.c b/systemv/lp.c
index 45550aadc..744a13acf 100644
--- a/systemv/lp.c
+++ b/systemv/lp.c
@@ -99,8 +99,7 @@ main(int argc, /* I - Number of command-line arguments */
#ifdef HAVE_SSL
cupsSetEncryption(HTTP_ENCRYPT_REQUIRED);
#else
- _cupsLangPrintf(stderr,
- _("%s: Sorry, no encryption support compiled in\n"),
+ _cupsLangPrintf(stderr, _("%s: Sorry, no encryption support."),
argv[0]);
#endif /* HAVE_SSL */
break;
@@ -114,9 +113,8 @@ main(int argc, /* I - Number of command-line arguments */
if (i >= argc)
{
_cupsLangPrintf(stderr,
- _("%s: Error - expected username after "
- "\'-U\' option\n"),
- argv[0]);
+ _("%s: Error - expected username after \"-U\" "
+ "option."), argv[0]);
return (1);
}
@@ -138,8 +136,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected destination after "
- "\'-d\' option\n"),
- argv[0]);
+ "\"-d\" option."), argv[0]);
return (1);
}
@@ -152,7 +149,8 @@ main(int argc, /* I - Number of command-line arguments */
if ((dest = cupsGetNamedDest(NULL, printer, instance)) != NULL)
{
for (j = 0; j < dest->num_options; j ++)
- if (cupsGetOption(dest->options[j].name, num_options, options) == NULL)
+ if (cupsGetOption(dest->options[j].name, num_options,
+ options) == NULL)
num_options = cupsAddOption(dest->options[j].name,
dest->options[j].value,
num_options, &options);
@@ -167,14 +165,14 @@ main(int argc, /* I - Number of command-line arguments */
if (i >= argc)
{
_cupsLangPrintf(stderr,
- _("%s: Error - expected form after \'-f\' "
- "option\n"),
+ _("%s: Error - expected form after \"-f\" "
+ "option."),
argv[0]);
return (1);
}
}
- _cupsLangPrintf(stderr, _("%s: Warning - form option ignored\n"),
+ _cupsLangPrintf(stderr, _("%s: Warning - form option ignored."),
argv[0]);
break;
@@ -189,8 +187,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected hostname after "
- "\'-h\' option\n"),
- argv[0]);
+ "\"-h\" option."), argv[0]);
return (1);
}
@@ -208,7 +205,7 @@ main(int argc, /* I - Number of command-line arguments */
if (i >= argc)
{
_cupsLangPrintf(stderr,
- _("%s: Expected job ID after \'-i\' option\n"),
+ _("%s: Expected job ID after \"-i\" option."),
argv[0]);
return (1);
}
@@ -220,8 +217,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - cannot print files and alter "
- "jobs simultaneously\n"),
- argv[0]);
+ "jobs simultaneously."), argv[0]);
return (1);
}
@@ -232,7 +228,7 @@ main(int argc, /* I - Number of command-line arguments */
if (job_id < 0)
{
- _cupsLangPrintf(stderr, _("%s: Error - bad job ID\n"), argv[0]);
+ _cupsLangPrintf(stderr, _("%s: Error - bad job ID."), argv[0]);
break;
}
break;
@@ -266,8 +262,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected copies after "
- "\'-n\' option\n"),
- argv[0]);
+ "\"-n\" option."), argv[0]);
return (1);
}
@@ -275,12 +270,14 @@ main(int argc, /* I - Number of command-line arguments */
}
sprintf(buffer, "%d", num_copies);
- num_options = cupsAddOption("copies", buffer, num_options, &options);
+ num_options = cupsAddOption("copies", buffer, num_options,
+ &options);
break;
case 'o' : /* Option */
if (argv[i][2] != '\0')
- num_options = cupsParseOptions(argv[i] + 2, num_options, &options);
+ num_options = cupsParseOptions(argv[i] + 2, num_options,
+ &options);
else
{
i ++;
@@ -289,8 +286,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected option string after "
- "\'-o\' option\n"),
- argv[0]);
+ "\"-o\" option."), argv[0]);
return (1);
}
@@ -310,8 +306,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected priority after "
- "\'-%c\' option\n"),
- argv[0], argv[i][1]);
+ "\"-%c\" option."), argv[0], argv[i][1]);
return (1);
}
@@ -333,13 +328,13 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - priority must be between 1 and "
- "100.\n"),
- argv[0]);
+ "100."), argv[0]);
return (1);
}
sprintf(buffer, "%d", priority);
- num_options = cupsAddOption("job-priority", buffer, num_options, &options);
+ num_options = cupsAddOption("job-priority", buffer, num_options,
+ &options);
break;
case 's' : /* Silent */
@@ -357,8 +352,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected title after "
- "\'-t\' option\n"),
- argv[0]);
+ "\"-t\" option."), argv[0]);
return (1);
}
@@ -375,15 +369,13 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected mode list after "
- "\'-y\' option\n"),
- argv[0]);
+ "\"-y\" option."), argv[0]);
return (1);
}
}
_cupsLangPrintf(stderr,
- _("%s: Warning - mode option ignored\n"),
- argv[0]);
+ _("%s: Warning - mode option ignored."), argv[0]);
break;
case 'H' : /* Hold job */
@@ -397,8 +389,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected hold name after "
- "\'-H\' option\n"),
- argv[0]);
+ "\"-H\" option."), argv[0]);
return (1);
}
@@ -424,9 +415,8 @@ main(int argc, /* I - Number of command-line arguments */
if (job_id < 1)
{
_cupsLangPrintf(stderr,
- _("%s: Need job ID (\'-i jobid\') before "
- "\'-H restart\'\n"),
- argv[0]);
+ _("%s: Need job ID (\"-i jobid\") before "
+ "\"-H restart\"."), argv[0]);
return (1);
}
@@ -449,8 +439,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected page list after "
- "\'-P\' option\n"),
- argv[0]);
+ "\"-P\" option."), argv[0]);
return (1);
}
@@ -470,14 +459,13 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected character set after "
- "\'-S\' option\n"),
- argv[0]);
+ "\"-S\" option."), argv[0]);
return (1);
}
}
_cupsLangPrintf(stderr,
- _("%s: Warning - character set option ignored\n"),
+ _("%s: Warning - character set option ignored."),
argv[0]);
break;
@@ -490,14 +478,13 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected content type after "
- "\'-T\' option\n"),
- argv[0]);
+ "\"-T\" option."), argv[0]);
return (1);
}
}
_cupsLangPrintf(stderr,
- _("%s: Warning - content type option ignored\n"),
+ _("%s: Warning - content type option ignored."),
argv[0]);
break;
@@ -506,7 +493,7 @@ main(int argc, /* I - Number of command-line arguments */
break;
default :
- _cupsLangPrintf(stderr, _("%s: Error - unknown option \'%c\'\n"),
+ _cupsLangPrintf(stderr, _("%s: Error - unknown option \"%c\"."),
argv[0], argv[i][1]);
return (1);
}
@@ -516,8 +503,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - cannot print from stdin if files or a "
- "job ID are provided\n"),
- argv[0]);
+ "job ID are provided."), argv[0]);
return (1);
}
@@ -531,7 +517,7 @@ main(int argc, /* I - Number of command-line arguments */
if (access(argv[i], R_OK) != 0)
{
- _cupsLangPrintf(stderr, _("%s: Error - unable to access \"%s\" - %s\n"),
+ _cupsLangPrintf(stderr, _("%s: Error - unable to access \"%s\" - %s"),
argv[0], argv[i], strerror(errno));
return (1);
}
@@ -548,7 +534,7 @@ main(int argc, /* I - Number of command-line arguments */
}
}
else
- _cupsLangPrintf(stderr, _("%s: Error - too many files - \"%s\"\n"),
+ _cupsLangPrintf(stderr, _("%s: Error - too many files - \"%s\"."),
argv[0], argv[i]);
/*
@@ -596,15 +582,14 @@ main(int argc, /* I - Number of command-line arguments */
if (printer && !cupsGetNamedDest(NULL, printer, NULL))
_cupsLangPrintf(stderr,
_("%s: Error - %s environment variable names "
- "non-existent destination \"%s\"\n"),
- argv[0], val, printer);
+ "non-existent destination \"%s\"."), argv[0], val,
+ printer);
else if (cupsLastError() == IPP_NOT_FOUND)
_cupsLangPrintf(stderr,
- _("%s: Error - no default destination available.\n"),
+ _("%s: Error - no default destination available."),
argv[0]);
else
- _cupsLangPrintf(stderr,
- _("%s: Error - scheduler not responding\n"),
+ _cupsLangPrintf(stderr, _("%s: Error - scheduler not responding."),
argv[0]);
return (1);
@@ -636,8 +621,7 @@ main(int argc, /* I - Number of command-line arguments */
if (status != HTTP_CONTINUE)
{
- _cupsLangPrintf(stderr,
- _("%s: Error - unable to queue from stdin - %s\n"),
+ _cupsLangPrintf(stderr, _("%s: Error - unable to queue from stdin - %s."),
argv[0], httpStatus(status));
return (1);
}
@@ -648,11 +632,11 @@ main(int argc, /* I - Number of command-line arguments */
if (job_id < 1)
{
- _cupsLangPrintf(stderr, "%s: %s\n", argv[0], cupsLastErrorString());
+ _cupsLangPrintf(stderr, "%s: %s", argv[0], cupsLastErrorString());
return (1);
}
else if (!silent)
- _cupsLangPrintf(stdout, _("request id is %s-%d (%d file(s))\n"),
+ _cupsLangPrintf(stdout, _("request id is %s-%d (%d file(s))"),
printer, job_id, num_files);
return (0);
@@ -685,7 +669,7 @@ restart_job(const char *command, /* I - Command name */
if (cupsLastError() > IPP_OK_CONFLICT)
{
- _cupsLangPrintf(stderr, "%s: %s\n", command, cupsLastErrorString());
+ _cupsLangPrintf(stderr, "%s: %s", command, cupsLastErrorString());
return (1);
}
@@ -726,7 +710,7 @@ set_job_attrs(const char *command, /* I - Command name */
if (cupsLastError() > IPP_OK_CONFLICT)
{
- _cupsLangPrintf(stderr, "%s: %s\n", command, cupsLastErrorString());
+ _cupsLangPrintf(stderr, "%s: %s", command, cupsLastErrorString());
return (1);
}