summaryrefslogtreecommitdiffstats
path: root/lib/Utils/parse_release.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-30 16:48:49 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-30 16:48:49 +0100
commit954308c949e3bb9ee0f08e697122833bbb5c87ac (patch)
tree719cee4bc2f1b4c8ed27660e2e116327921c7bd6 /lib/Utils/parse_release.cpp
parent49c4d359ff6d5332f60c090ad2c26a9a39086014 (diff)
downloadabrt-954308c949e3bb9ee0f08e697122833bbb5c87ac.tar.gz
abrt-954308c949e3bb9ee0f08e697122833bbb5c87ac.tar.xz
abrt-954308c949e3bb9ee0f08e697122833bbb5c87ac.zip
fixes on top of AutoReportUIDs change. run tested
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/Utils/parse_release.cpp')
-rw-r--r--lib/Utils/parse_release.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Utils/parse_release.cpp b/lib/Utils/parse_release.cpp
index b96cab76..8a106b69 100644
--- a/lib/Utils/parse_release.cpp
+++ b/lib/Utils/parse_release.cpp
@@ -11,7 +11,7 @@ void parse_release(const char *pRelease, string& pProduct, string& pVersion)
{
pProduct = "Fedora";
pVersion = "rawhide";
- VERB3 log("%s:Version is '%s' and product is '%s'",__func__, pVersion.c_str(), pProduct.c_str());
+ VERB3 log("%s: version:'%s' product:'%s'", __func__, pVersion.c_str(), pProduct.c_str());
return;
}
if (strstr(pRelease, "Fedora"))
@@ -36,5 +36,5 @@ void parse_release(const char *pRelease, string& pProduct, string& pVersion)
}
space++;
}
- VERB3 log("%s:Version is '%s' and product is '%s'",__func__, pVersion.c_str(), pProduct.c_str());
+ VERB3 log("%s: version:'%s' product:'%s'", __func__, pVersion.c_str(), pProduct.c_str());
}