[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:41:59 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=3d172ef
The following commit has been merged in the master branch:
commit 3d172ef6f8d7a4c420c0a7ee4d3a8bc3ea41ab96
Author: Andreas Huggel <ahuggel at gmx.net>
Date: Fri Oct 15 07:44:48 2010 +0000
#736: Fix for Make starting with a dash.
---
src/makernote.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/makernote.cpp b/src/makernote.cpp
index 034882d..c4f3a20 100644
--- a/src/makernote.cpp
+++ b/src/makernote.cpp
@@ -86,6 +86,7 @@ namespace Exiv2 {
bool TiffMnRegistry::operator==(const std::string& key) const
{
std::string make(make_);
+ if (key.size() > 0 && key[0] == '-') return false;
return make == key.substr(0, make.length());
}
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list