summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-05-31 15:40:56 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-05-31 15:40:56 +0200
commit1fd72405af207bc539d6982034f5d14115f07726 (patch)
tree191b2e5d2511d81b16be46658837f44478ef7197 /src
parent231f21407d074e1ebb9699ee54fdc5f5a169e71c (diff)
downloadabrt-1fd72405af207bc539d6982034f5d14115f07726.tar.gz
abrt-1fd72405af207bc539d6982034f5d14115f07726.tar.xz
abrt-1fd72405af207bc539d6982034f5d14115f07726.zip
fix whitespace
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src')
-rw-r--r--src/CLI/CLI.cpp2
-rw-r--r--src/Daemon/MiddleWare.cpp10
-rw-r--r--src/Daemon/PluginManager.cpp2
3 files changed, 7 insertions, 7 deletions
diff --git a/src/CLI/CLI.cpp b/src/CLI/CLI.cpp
index 3f3164d3..cd530e75 100644
--- a/src/CLI/CLI.cpp
+++ b/src/CLI/CLI.cpp
@@ -165,7 +165,7 @@ static void usage(char *argv0)
" UID:UUID pair,\n"
" unique UUID prefix - the crash with matching UUID will be acted upon\n"
" @N - N'th crash (as displayed by --get-list-full) will be acted upon\n"
- ),
+ ),
name, name);
}
diff --git a/src/Daemon/MiddleWare.cpp b/src/Daemon/MiddleWare.cpp
index 436078ff..fafe0738 100644
--- a/src/Daemon/MiddleWare.cpp
+++ b/src/Daemon/MiddleWare.cpp
@@ -504,11 +504,11 @@ report_status_t Report(const map_crash_data_t& client_report,
{
const char *plugin_name = it_r->first.c_str();
- /* Check if the reporter is in the input list of allowed reporters. */
- if (reporters.end() == std::find(reporters.begin(), reporters.end(), plugin_name))
- {
- continue;
- }
+ /* Check if the reporter is in the input list of allowed reporters. */
+ if (reporters.end() == std::find(reporters.begin(), reporters.end(), plugin_name))
+ {
+ continue;
+ }
try
{
diff --git a/src/Daemon/PluginManager.cpp b/src/Daemon/PluginManager.cpp
index 47b72e01..eca957df 100644
--- a/src/Daemon/PluginManager.cpp
+++ b/src/Daemon/PluginManager.cpp
@@ -450,7 +450,7 @@ map_plugin_settings_t CPluginManager::GetPluginSettings(const char *pName)
map_map_string_t::iterator it_settings = m_map_plugin_settings.find(pName);
if (it_settings != m_map_plugin_settings.end())
{
- /* but it exists, its settings are available nevertheless */
+ /* but it exists, its settings are available nevertheless */
VERB3 log("Returning settings for non-loaded plugin %s", pName);
ret = it_settings->second;
return ret;