summaryrefslogtreecommitdiff
path: root/systemv/cupsaccept.c
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2009-10-15 18:50:47 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2009-10-15 18:50:47 +0000
commit4d301e694f72b03ab2b6c8189387bd7076a3a2ea (patch)
tree3fe42587c15d843dd9eba082b9519ab52f2571cd /systemv/cupsaccept.c
parentb226ab99134159fff1c3192d3bf22d2652db386b (diff)
Merge changes from CUPS 1.5svn-r8849.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@1725 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'systemv/cupsaccept.c')
-rw-r--r--systemv/cupsaccept.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/systemv/cupsaccept.c b/systemv/cupsaccept.c
index d92f18433..3c174d500 100644
--- a/systemv/cupsaccept.c
+++ b/systemv/cupsaccept.c
@@ -70,7 +70,7 @@ main(int argc, /* I - Number of command-line arguments */
op = IPP_RESUME_PRINTER;
else
{
- _cupsLangPrintf(stderr, _("%s: Don't know what to do!\n"),
+ _cupsLangPrintf(stderr, _("%s: Don't know what to do\n"),
command);
return (1);
}
@@ -91,7 +91,7 @@ main(int argc, /* I - Number of command-line arguments */
cupsSetEncryption(HTTP_ENCRYPT_REQUIRED);
#else
_cupsLangPrintf(stderr,
- _("%s: Sorry, no encryption support compiled in!\n"),
+ _("%s: Sorry, no encryption support compiled in\n"),
command);
#endif /* HAVE_SSL */
break;
@@ -106,7 +106,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected username after "
- "\'-U\' option!\n"),
+ "\'-U\' option\n"),
command);
return (1);
}
@@ -129,7 +129,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected hostname after "
- "\'-h\' option!\n"),
+ "\'-h\' option\n"),
command);
return (1);
}
@@ -148,7 +148,7 @@ main(int argc, /* I - Number of command-line arguments */
{
_cupsLangPrintf(stderr,
_("%s: Error - expected reason text after "
- "\'-r\' option!\n"),
+ "\'-r\' option\n"),
command);
return (1);
}
@@ -164,14 +164,14 @@ main(int argc, /* I - Number of command-line arguments */
op = IPP_RELEASE_HELD_NEW_JOBS;
else
{
- _cupsLangPrintf(stderr, _("%s: Error - unknown option \'%s\'!\n"),
+ _cupsLangPrintf(stderr, _("%s: Error - unknown option \'%s\'\n"),
command, argv[i]);
return (1);
}
break;
default :
- _cupsLangPrintf(stderr, _("%s: Error - unknown option \'%c\'!\n"),
+ _cupsLangPrintf(stderr, _("%s: Error - unknown option \'%c\'\n"),
command, argv[i][1]);
return (1);
}