summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2011-01-05 15:22:00 +0200
committerPanu Matilainen <pmatilai@redhat.com>2011-01-05 15:22:45 +0200
commit599094e258fc69d76ef9291355850a10508acb3a (patch)
treef9c5c23921edb74b8ac5b1eafd4b02f7e8c092b1
parent5c4135654f9d35772bea8a51c98c8020a3d20396 (diff)
downloadrpm-599094e258fc69d76ef9291355850a10508acb3a.tar.gz
rpm-599094e258fc69d76ef9291355850a10508acb3a.tar.bz2
rpm-599094e258fc69d76ef9291355850a10508acb3a.zip
Hide --verifydb switch again
- It got exposed in the rpmdb tool splitup, but the functionality in it's current form is still just as dubious as it always was, hide it out of sight again.
-rw-r--r--rpmdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmdb.c b/rpmdb.c
index a84862d77..cc4a7aa73 100644
--- a/rpmdb.c
+++ b/rpmdb.c
@@ -23,8 +23,8 @@ static struct poptOption dbOptsTable[] = {
{ "rebuilddb", '\0', (POPT_ARG_VAL|POPT_ARGFLAG_OR), &mode, MODE_REBUILDDB,
N_("rebuild database inverted lists from installed package headers"),
NULL},
- { "verifydb", '\0', (POPT_ARG_VAL|POPT_ARGFLAG_OR), &mode, MODE_VERIFYDB,
- N_("verify database files"), NULL},
+ { "verifydb", '\0', (POPT_ARG_VAL|POPT_ARGFLAG_OR|POPT_ARGFLAG_DOC_HIDDEN),
+ &mode, MODE_VERIFYDB, N_("verify database files"), NULL},
POPT_TABLEEND
};