[ABRT PATCH] improved the error messages in abrt-server - closes #679

Jiri Moskovcak jmoskovc at redhat.com
Tue Aug 13 11:47:42 UTC 2013


Signed-off-by: Jiri Moskovcak <jmoskovc at redhat.com>
---
 src/daemon/abrt-server.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c
index 2e9ac20..d3e0afa 100644
--- a/src/daemon/abrt-server.c
+++ b/src/daemon/abrt-server.c
@@ -97,7 +97,7 @@ static int delete_path(const char *dump_dir_name)
     if (!dir_is_in_dump_location(dump_dir_name))
     {
         /* Then refuse to operate on it (someone is attacking us??) */
-        error_msg("Bad problem directory name '%s', not deleting", dump_dir_name);
+        error_msg("Bad problem directory name '%s', should start with: '%s'", dirname, g_settings_dump_location);
         return 400; /* Bad Request */
     }
     if (!dump_dir_accessible_by_uid(dump_dir_name, client_uid))
@@ -144,7 +144,7 @@ static int run_post_create(const char *dirname)
     if (!dir_is_in_dump_location(dirname))
     {
         /* Then refuse to operate on it (someone is attacking us??) */
-        error_msg("Bad problem directory name '%s'", dirname);
+        error_msg("Bad problem directory name '%s', should start with: '%s'", dirname, g_settings_dump_location);
         return 400; /* Bad Request */
     }
     if (!dump_dir_accessible_by_uid(dirname, client_uid))
-- 
1.8.3.1



More information about the Crash-catcher mailing list