Don't return the input path in GetAncestors
If '/A/B/C' is passed in as the path argument into GetAncestors,
don't return /A/B/C, but only its actual ancestors /A and /A/B.
Change-Id: I8dde80fa2ae5fad26c93be5fda5cfda9ff1b77d8
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/src/main.cpp b/src/main.cpp
index 1d4a7c4..ef93cc3 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -849,7 +849,8 @@
for (auto& object_path : interface_map)
{
auto& this_path = object_path.first;
- if (boost::starts_with(req_path, this_path))
+ if (boost::starts_with(req_path, this_path) &&
+ (req_path != this_path))
{
if (interfaces.empty())
{