mapper: Don't stop after first GetAncestors result

After the first result was found, the code was breaking
out instead of continuing to look for other services that
also satisified the operation.  This made it so a path
would never contain results for more than 1 service.

To fix, simply remove the break statement.

Tested: Call GetAncestors on a path with an ancestor that
        has multiple services and ensure they all are now
        returned.

Change-Id: I6a29b7087d4e5e9763510797e0914c2f8e160495
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/src/main.cpp b/src/main.cpp
index e8928a9..bcf52e1 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -808,7 +808,6 @@
                             {
                                 addObjectMapResult(ret, this_path,
                                                    interface_map);
-                                break;
                             }
                         }
                     }