Diff between 5eb2973b8fb5537cc940940abd5c9263c86379d8 and ddd83295ad239ecbc95103148ed06d54d571b40d
Changed Files
| File | Additions | Deletions | Status |
| src/advertising.c | +2 | -2 | modified |
Full Patch
diff --git a/src/advertising.c b/src/advertising.c
index d56b7a2..a148625 100644
--- a/src/advertising.c
+++ b/src/advertising.c
@@ -77,10 +77,10 @@ static bool match_advertisement(const void *a, const void *b)
const struct advertisement *ad = a;
const struct dbus_obj_match *match = b;
- if (match->owner && !g_strcmp0(ad->owner, match->owner))
+ if (match->owner && g_strcmp0(ad->owner, match->owner))
return false;
- if (match->path && !g_strcmp0(ad->path, match->path))
+ if (match->path && g_strcmp0(ad->path, match->path))
return false;
return true;