summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-02-03 14:32:33 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2011-02-03 14:32:33 +0100
commitaa588deee9b47db4ddc1070581f5c3690139095d (patch)
treec24912d692d9d549659831341e58fbac3955af39
parentd251cc5d8b3f19a29147479016c3b5bfe9099352 (diff)
downloadabrt-aa588deee9b47db4ddc1070581f5c3690139095d.tar.gz
abrt-aa588deee9b47db4ddc1070581f5c3690139095d.tar.xz
abrt-aa588deee9b47db4ddc1070581f5c3690139095d.zip
cli: change user's abrt dir from $HOME/abrt to $HOME/.abrt
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
-rw-r--r--src/cli/CLI.cpp4
1 files changed, 2 insertions, 2 deletions
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);
}