diff OrthancServer/OrthancFindRequestHandler.cpp @ 3163:cf91b6f22278

Fix issue #90 (C-Find shall match missing tags to null/empty string)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 24 Jan 2019 18:04:55 +0100
parents beeeb6096f27
children 8ea7c4546c3a
line wrap: on
line diff
--- a/OrthancServer/OrthancFindRequestHandler.cpp	Thu Jan 24 16:47:05 2019 +0100
+++ b/OrthancServer/OrthancFindRequestHandler.cpp	Thu Jan 24 18:04:55 2019 +0100
@@ -639,7 +639,7 @@
       std::string value = element.GetValue().GetContent();
       if (value.size() == 0)
       {
-        // An empty string corresponds to a "*" wildcard constraint, so we ignore it
+        // An empty string corresponds to an universal constraint, so we ignore it
         continue;
       }