diff options
author | Guillem Jover <guillem@debian.org> | 2015-02-27 09:44:08 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2015-04-10 04:23:56 +0200 |
commit | d465dca48fb9c7c03aedf6fd8f266d22085d2bec (patch) | |
tree | 51002134f1b1e6206c988eb05bc7c77f791aa977 /src/main.c | |
parent | 9929591b148577bec771400e003c820afcb9175d (diff) | |
download | dpkg-d465dca48fb9c7c03aedf6fd8f266d22085d2bec.tar.gz |
Consistently use proper quotation marks all over the place
That is "" or '', and not the unbalanced `' pair.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c index 8d449ead5..4c4eb88f2 100644 --- a/src/main.c +++ b/src/main.c @@ -58,7 +58,7 @@ static void DPKG_ATTR_NORET printversion(const struct cmdinfo *ci, const char *value) { - printf(_("Debian `%s' package management program version %s.\n"), + printf(_("Debian '%s' package management program version %s.\n"), DPKG, DPKG_VERSION_ARCH); printf(_( "This is free software; see the GNU General Public License version 2 or\n" @@ -101,7 +101,7 @@ usage(const struct cmdinfo *ci, const char *value) " --forget-old-unavail Forget uninstalled unavailable pkgs.\n" " -s|--status <package> ... Display package status details.\n" " -p|--print-avail <package> ... Display available version details.\n" -" -L|--listfiles <package> ... List files `owned' by package(s).\n" +" -L|--listfiles <package> ... List files 'owned' by package(s).\n" " -l|--list [<pattern> ...] List packages concisely.\n" " -S|--search <pattern> ... Find package(s) owning file(s).\n" " -C|--audit [<package> ...] Check for broken package(s).\n" @@ -634,7 +634,7 @@ set_force(const struct cmdinfo *cip, const char *value) break; if (!fip->name) { - badusage(_("unknown force/refuse option `%.*s'"), + badusage(_("unknown force/refuse option '%.*s'"), (int)min(l, 250), value); } else if (strcmp(fip->name, "all") == 0) { for (fip = forceinfos; fip->name; fip++) @@ -786,7 +786,7 @@ commandfd(const char *const *argv) infd = dpkg_options_parse_arg_int(cipaction, pipein); in = fdopen(infd, "r"); if (in == NULL) - ohshite(_("couldn't open `%i' for stream"), (int) infd); + ohshite(_("couldn't open '%i' for stream"), (int)infd); for (;;) { bool mode = false; |