diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-22 17:44:07 +0100 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-22 17:44:07 +0100 |
| commit | c6287c4fe05e5f3557f121142dc8b53c701b1f07 (patch) | |
| tree | 6009bcb5c0d2ca734d939cc8b4698a5f7a0ece4f /src | |
| parent | 97a21512ea34a2cc2931516033681e3d75436349 (diff) | |
| download | abrt-c6287c4fe05e5f3557f121142dc8b53c701b1f07.tar.gz abrt-c6287c4fe05e5f3557f121142dc8b53c701b1f07.tar.xz abrt-c6287c4fe05e5f3557f121142dc8b53c701b1f07.zip | |
fix previous commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/Daemon/MiddleWare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Daemon/MiddleWare.cpp b/src/Daemon/MiddleWare.cpp index 40bee1a..5a12d76 100644 --- a/src/Daemon/MiddleWare.cpp +++ b/src/Daemon/MiddleWare.cpp @@ -708,7 +708,7 @@ bool analyzer_has_AutoReportUIDs(const char *analyzer_name, const char *uid_str) if (it == settings.end()) return false; - if ((strcmp(analyzer_name, "Kerneloops") == 0) && (strcmp(uid, "-1") == 0)) + if ((strcmp(analyzer_name, "Kerneloops") == 0) && (strcmp(uid_str, "-1") == 0)) return true; /* |
