From 6e4f695a0f583a832e616034db59779444d86d69 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Thu, 11 Aug 2011 09:18:55 -0400 Subject: pacman: remove --dbonly shortopt This is somewhat of a dangerous option with limited use cases. Don't advertise it as an easily accessibly option. Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- src/pacman/conf.h | 3 ++- src/pacman/pacman.c | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/pacman/conf.h b/src/pacman/conf.h index 33a87983..396cde5a 100644 --- a/src/pacman/conf.h +++ b/src/pacman/conf.h @@ -124,7 +124,8 @@ enum { OP_ARCH, OP_PRINTFORMAT, OP_GPGDIR, - OP_RECURSIVE + OP_RECURSIVE, + OP_DBONLY }; /* clean method */ diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index f7ea3fb5..71413bdd 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -189,7 +189,7 @@ static void usage(int op, const char * const myname) /* pass through */ case PM_OP_REMOVE: addlist(_(" -d, --nodeps skip dependency version checks (-dd to skip all checks)\n")); - addlist(_(" -k, --dbonly only modify database entries, not package files\n")); + addlist(_(" --dbonly only modify database entries, not package files\n")); addlist(_(" --noprogressbar do not show a progress bar when downloading files\n")); addlist(_(" --noscriptlet do not execute the install scriptlet if one exists\n")); addlist(_(" --print print the targets instead of performing the operation\n")); @@ -488,7 +488,7 @@ static int parsearg_trans(int opt) config->flags |= ALPM_TRANS_FLAG_NODEPVERSION; } break; - case 'k': config->flags |= ALPM_TRANS_FLAG_DBONLY; break; + case OP_DBONLY: config->flags |= ALPM_TRANS_FLAG_DBONLY; break; case OP_NOPROGRESSBAR: config->noprogressbar = 1; break; case OP_NOSCRIPTLET: config->flags |= ALPM_TRANS_FLAG_NOSCRIPTLET; break; case 'p': config->print = 1; break; @@ -600,7 +600,6 @@ static int parseargs(int argc, char *argv[]) {"groups", no_argument, 0, 'g'}, {"help", no_argument, 0, 'h'}, {"info", no_argument, 0, 'i'}, - {"dbonly", no_argument, 0, 'k'}, {"check", no_argument, 0, 'k'}, {"list", no_argument, 0, 'l'}, {"foreign", no_argument, 0, 'm'}, @@ -636,6 +635,7 @@ static int parseargs(int argc, char *argv[]) {"print-format", required_argument, 0, OP_PRINTFORMAT}, {"gpgdir", required_argument, 0, OP_GPGDIR}, {"recursive", no_argument, 0, OP_RECURSIVE}, + {"dbonly", no_argument, 0, OP_DBONLY}, {0, 0, 0, 0} }; -- cgit v1.2.3-24-g4f1b