From aa588deee9b47db4ddc1070581f5c3690139095d Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 3 Feb 2011 14:32:33 +0100 Subject: cli: change user's abrt dir from $HOME/abrt to $HOME/.abrt Signed-off-by: Denys Vlasenko --- src/cli/CLI.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cli/CLI.cpp') diff --git a/src/cli/CLI.cpp b/src/cli/CLI.cpp index af85a9e9..2ac63422 100644 --- a/src/cli/CLI.cpp +++ b/src/cli/CLI.cpp @@ -300,7 +300,7 @@ static void print_usage_and_die(char *argv0) " -l, --list List not yet reported crashes\n" " -f, --full List all crashes\n" " -D BASE_DIR Directory to list crashes from\n" - " (default: -D $HOME/abrt/spool -D %s)\n" + " (default: -D $HOME/.abrt/spool -D %s)\n" "\n" " -r, --report Send a report about CRASH_DIR\n" " -y, --always ...without editing and asking\n" @@ -373,7 +373,7 @@ int main(int argc, char** argv) { char *home = getenv("HOME"); if (home) - D_list = g_list_append(D_list, concat_path_file(home, "abrt/spool")); + D_list = g_list_append(D_list, concat_path_file(home, ".abrt/spool")); D_list = g_list_append(D_list, (void*)DEBUG_DUMPS_DIR); } -- cgit