summaryrefslogtreecommitdiffstats
path: root/src/CLI/report.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/CLI/report.cpp')
-rw-r--r--src/CLI/report.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CLI/report.cpp b/src/CLI/report.cpp
index 5506532..b9c6d41 100644
--- a/src/CLI/report.cpp
+++ b/src/CLI/report.cpp
@@ -409,7 +409,13 @@ int report(const char *uuid, bool always)
char answer[16] = "n";
fgets(answer, sizeof(answer), stdin);
if (answer[0] == 'Y' || answer[0] == 'y')
+ {
+ puts(_("Reporting..."));
call_Report(cr);
+ puts(_("Crash report was successfully sent."));
+ }
+ else
+ puts(_("Crash report was not sent."));
return 0;
}