summaryrefslogtreecommitdiff
path: root/dpkg-deb/main.c
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2015-02-27 09:44:08 +0100
committerGuillem Jover <guillem@debian.org>2015-04-10 04:23:56 +0200
commitd465dca48fb9c7c03aedf6fd8f266d22085d2bec (patch)
tree51002134f1b1e6206c988eb05bc7c77f791aa977 /dpkg-deb/main.c
parent9929591b148577bec771400e003c820afcb9175d (diff)
downloaddpkg-d465dca48fb9c7c03aedf6fd8f266d22085d2bec.tar.gz
Consistently use proper quotation marks all over the place
That is "" or '', and not the unbalanced `' pair.
Diffstat (limited to 'dpkg-deb/main.c')
-rw-r--r--dpkg-deb/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dpkg-deb/main.c b/dpkg-deb/main.c
index 5fdd687b5..686e82f42 100644
--- a/dpkg-deb/main.c
+++ b/dpkg-deb/main.c
@@ -51,7 +51,7 @@ const char *showformat = "${Package}\t${Version}\n";
static void DPKG_ATTR_NORET
printversion(const struct cmdinfo *cip, const char *value)
{
- printf(_("Debian `%s' package archive backend version %s.\n"),
+ printf(_("Debian '%s' package archive backend version %s.\n"),
BACKEND, DPKG_VERSION_ARCH);
printf(_(
"This is free software; see the GNU General Public License version 2 or\n"
@@ -93,7 +93,7 @@ usage(const struct cmdinfo *cip, const char *value)
printf(_(
"<deb> is the filename of a Debian format archive.\n"
"<cfile> is the name of an administrative file component.\n"
-"<cfield> is the name of a field in the main `control' file.\n"
+"<cfield> is the name of a field in the main 'control' file.\n"
"\n"));
printf(_(
@@ -212,7 +212,7 @@ set_compress_type(const struct cmdinfo *cip, const char *value)
{
compress_params.type = compressor_find_by_name(value);
if (compress_params.type == COMPRESSOR_TYPE_UNKNOWN)
- ohshit(_("unknown compression type `%s'!"), value);
+ ohshit(_("unknown compression type '%s'!"), value);
if (compress_params.type == COMPRESSOR_TYPE_LZMA)
warning(_("deprecated compression type '%s'; use xz instead"), value);
if (compress_params.type == COMPRESSOR_TYPE_BZIP2)