summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui-wizard-gtk/wizard.c6
-rw-r--r--src/plugins/analyze_LocalGDB.xml2
-rw-r--r--src/plugins/analyze_RetraceServer.xml2
-rw-r--r--src/plugins/report_Bugzilla.xml44
4 files changed, 27 insertions, 27 deletions
diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c
index f114f8ed..07ebcb5b 100644
--- a/src/gui-wizard-gtk/wizard.c
+++ b/src/gui-wizard-gtk/wizard.c
@@ -770,9 +770,11 @@ static gboolean consume_cmd_output(GIOChannel *source, GIOCondition condition, g
/* Write a final message to the log */
if (evd->event_log->len != 0 && evd->event_log->buf[evd->event_log->len - 1] != '\n')
save_to_event_log(evd, "\n");
- if (retval != 0)
+ /* If program failed, or if it finished successfully without saying anything... */
+ if (retval != 0 || evd->event_log_state == LOGSTATE_FIRSTLINE)
{
- evd->event_log_state = LOGSTATE_ERRLINE;
+ if (retval != 0) /* If program failed, emit error line */
+ evd->event_log_state = LOGSTATE_ERRLINE;
char *msg;
if (WIFSIGNALED(status))
msg = xasprintf("(killed by signal %d)\n", WTERMSIG(status));
diff --git a/src/plugins/analyze_LocalGDB.xml b/src/plugins/analyze_LocalGDB.xml
index 351f4d09..cf6064f2 100644
--- a/src/plugins/analyze_LocalGDB.xml
+++ b/src/plugins/analyze_LocalGDB.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<event>
<name>Local GNU Debugger</name>
- <description>Downloads required debuginfo packages and analyzes core dump using local gdb</description>
+ <description>Download debuginfo packages and generate backtrace locally using GDB</description>
</event>
diff --git a/src/plugins/analyze_RetraceServer.xml b/src/plugins/analyze_RetraceServer.xml
index 9e9cc6ec..ee5e225f 100644
--- a/src/plugins/analyze_RetraceServer.xml
+++ b/src/plugins/analyze_RetraceServer.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<event>
<name>Retrace Server</name>
- <description>Sends core dumps to remote retrace server for analysis</description>
+ <description>Send core dump to remote retrace server for analysis</description>
<options>
<option type="text" name="RETRACE_SERVER_URL">
<label>Retrace server URL</label>
diff --git a/src/plugins/report_Bugzilla.xml b/src/plugins/report_Bugzilla.xml
index bf1dd82a..34a05447 100644
--- a/src/plugins/report_Bugzilla.xml
+++ b/src/plugins/report_Bugzilla.xml
@@ -1,30 +1,28 @@
<?xml version="1.0" encoding="UTF-8" ?>
<event>
<name>Bugzilla</name>
- <description>Report to Red Hat bug tracker</description>
+ <description>Report to Bugzilla bug tracker</description>
<options>
<option type="text" name="Bugzilla_BugzillaURL">
- <label>Bugzilla URL</label>
- <allow-empty>no</allow-empty>
- <description>Address of the bugzilla server</description>
- <default-value>https://bugzilla.redhat.com</default-value>
- <property>Address of the bugzilla server</property>
- <notused1>blahblahblah</notused1>
- </option>
- <option type="text" name="Bugzilla_Login">
- <label>User name</label>
- <allow-empty>no</allow-empty>
- <description>Username to use to log into your bugzilla account</description>
- </option>
- <option type="password" name="Bugzilla_Password">
- <label>Password</label>
- <allow-empty>no</allow-empty>
- <description>Password for your bugzilla account</description>
- </option>
- <option type="bool" name="Bugzilla_SSLVerify">
- <label>SSL Verify</label>
- <description>Check the ssl key validity</description>
- <default-value>yes</default-value>
- </option>
+ <label>Bugzilla URL</label>
+ <allow-empty>no</allow-empty>
+ <description>Address of Bugzilla server</description>
+ <default-value>https://bugzilla.redhat.com</default-value>
+ </option>
+ <option type="text" name="Bugzilla_Login">
+ <label>User name</label>
+ <allow-empty>no</allow-empty>
+ <description>Bugzilla account user name</description>
+ </option>
+ <option type="password" name="Bugzilla_Password">
+ <label>Password</label>
+ <allow-empty>no</allow-empty>
+ <description>Bugzilla account password</description>
+ </option>
+ <option type="bool" name="Bugzilla_SSLVerify">
+ <label>Verify SSL</label>
+ <description>Check SSL key validity</description>
+ <default-value>yes</default-value>
+ </option>
</options>
</event>