[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:44:48 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=710da96

The following commit has been merged in the master branch:
commit 710da9625115360a54d252dafc8c7a361fc0e050
Author: Robin Mills <robin at clanmills.com>
Date:   Wed Jan 14 11:44:56 2015 +0000

    #917.  Changing the condition for reporting an error.  We should not report an error for missing metadata when the user uses [-g match]+
---
 src/actions.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/actions.cpp b/src/actions.cpp
index 59f8b26..d38d0b8 100644
--- a/src/actions.cpp
+++ b/src/actions.cpp
@@ -542,7 +542,7 @@ namespace Action {
         }
 
         bool bTagFilterGiven = !Params::instance().keys_.empty();  // were tag filters given with -g?
-        int  result = ( sMissing.empty() && !bTagFilterGiven ) ? 0 : -3;
+        int  result = ( sMissing.empty() || bTagFilterGiven ) ? 0 : -3;
         if ( result ) {
             std::cerr << path_ << ": " << "(No " << sMissing << " data found in the file)
";
         }

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list