diff options
author | Pavel Březina <pbrezina@redhat.com> | 2012-03-02 13:34:19 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-03-02 07:46:08 -0500 |
commit | db6aabf673b5d4d12af00ab1d0ab8a56d7dc7aee (patch) | |
tree | 5a09527f3ff3ff2a519b86412b231449168340b4 | |
parent | e840b9da42d696eb86307c641f5196f12ec4b9c4 (diff) | |
download | sssd-db6aabf673b5d4d12af00ab1d0ab8a56d7dc7aee.tar.gz sssd-db6aabf673b5d4d12af00ab1d0ab8a56d7dc7aee.tar.bz2 sssd-db6aabf673b5d4d12af00ab1d0ab8a56d7dc7aee.zip |
Hide --debug option in sss_debuglevel
https://fedorahosted.org/sssd/ticket/1224
-rw-r--r-- | src/tools/sss_debuglevel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/sss_debuglevel.c b/src/tools/sss_debuglevel.c index f3fc045b..83be1444 100644 --- a/src/tools/sss_debuglevel.c +++ b/src/tools/sss_debuglevel.c @@ -71,7 +71,7 @@ int main(int argc, const char **argv) struct debuglevel_tool_ctx *ctx = NULL; struct poptOption long_options[] = { POPT_AUTOHELP - {"debug", '\0', POPT_ARG_INT, &pc_debug, + {"debug", '\0', POPT_ARG_INT | POPT_ARGFLAG_DOC_HIDDEN, &pc_debug, 0, _("The debug level to run with"), NULL }, {"config", 'c', POPT_ARG_STRING, &pc_config_file, 0, _("Specify a non-default config file"), NULL}, |