diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2011-01-05 15:22:00 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2011-01-05 15:22:45 +0200 |
commit | 599094e258fc69d76ef9291355850a10508acb3a (patch) | |
tree | f9c5c23921edb74b8ac5b1eafd4b02f7e8c092b1 /rpmdb.c | |
parent | 5c4135654f9d35772bea8a51c98c8020a3d20396 (diff) | |
download | librpm-tizen-599094e258fc69d76ef9291355850a10508acb3a.tar.gz librpm-tizen-599094e258fc69d76ef9291355850a10508acb3a.tar.bz2 librpm-tizen-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.
Diffstat (limited to 'rpmdb.c')
-rw-r--r-- | rpmdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 }; |