diff options
author | Maciej J. Karpiuk <m.karpiuk2@samsung.com> | 2014-09-12 16:04:01 +0200 |
---|---|---|
committer | Maciej J. Karpiuk <m.karpiuk2@samsung.com> | 2014-09-15 10:40:43 +0200 |
commit | 6af979ffe246fcc3c5286893f364a4691094beca (patch) | |
tree | 5bec0b06bce5067bb33e8021286a039815627c15 | |
parent | f89638679bc72541591f4cf32241fffae19f54ea (diff) | |
download | rpm-6af979ffe246fcc3c5286893f364a4691094beca.tar.gz rpm-6af979ffe246fcc3c5286893f364a4691094beca.tar.bz2 rpm-6af979ffe246fcc3c5286893f364a4691094beca.zip |
Fixed rpm crash when trying to access an undefined domain.tizen_3.0.m14.3_ivi_releasetizen_3.0.2014.q3_common_releasesubmit/tizen_common/20141008.071414submit/tizen/20140925.072409accepted/tizen/ivi/20141005.142818accepted/tizen/common/20141008.190634accepted/tizen/common/20140925.182508tizen_3.0.m14.3_ivitizen_3.0.2014.q3_commonaccepted/tizen_3.0.m14.3_iviaccepted/tizen_3.0.2014.q3_common
Change-Id: I5e84c913d1756320bf31442d87b797ff8b5f4633
-rw-r--r-- | plugins/msmxattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/msmxattr.c b/plugins/msmxattr.c index 2665dfc3e..e1f0008ef 100644 --- a/plugins/msmxattr.c +++ b/plugins/msmxattr.c @@ -848,7 +848,7 @@ static int msmCheckDomainRequestOrPermit(manifest_x *mfx, const char* domain) // FIXME: maybe this should be changed to a command-line option that // would be used during the image build? rpmlog(RPMLOG_WARNING, "The domain '%s' has not been yet defined by "\ - "any package\n"); + "any package\n", domain); //now check that this ac_domain can be requested if (mfx->defines) { |