diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-07 15:01:53 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-07 15:01:53 +0200 |
| commit | bb46fd1f7466df6a7f0c45ad50c661a36fec0caf (patch) | |
| tree | c09c97bcccec8b4c8263cc98a535dda1b972d7c8 /src/Daemon/Daemon.cpp | |
| parent | 118f716017d1ab7f23ad7b735b28025df419c054 (diff) | |
| download | abrt-bb46fd1f7466df6a7f0c45ad50c661a36fec0caf.tar.gz abrt-bb46fd1f7466df6a7f0c45ad50c661a36fec0caf.tar.xz abrt-bb46fd1f7466df6a7f0c45ad50c661a36fec0caf.zip | |
use CRPM class only in MiddleWare.cpp
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/Daemon.cpp')
| -rw-r--r-- | src/Daemon/Daemon.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Daemon/Daemon.cpp b/src/Daemon/Daemon.cpp index b4e99140..781a1bc0 100644 --- a/src/Daemon/Daemon.cpp +++ b/src/Daemon/Daemon.cpp @@ -37,7 +37,6 @@ #endif #include "abrtlib.h" #include "ABRTException.h" -#include "RPM.h" #include "CrashWatcher.h" #include "Daemon.h" @@ -193,8 +192,7 @@ static void SetUpMW() set_string_t::iterator it_k = g_settings_setOpenGPGPublicKeys.begin(); for (; it_k != g_settings_setOpenGPGPublicKeys.end(); it_k++) { - VERB1 log("Loading GPG key '%s'", it_k->c_str()); - g_RPM.LoadOpenGPGPublicKey(it_k->c_str()); + LoadOpenGPGPublicKey(it_k->c_str()); } set_string_t::iterator it_b = g_settings_mapBlackList.begin(); for (; it_b != g_settings_mapBlackList.end(); it_b++) |
