Diff between 16d6fe36f6fc3f6b1446b5460fba4dfba507d2f5 and 12b4397df7ab63302991814f1a3c35756dd5a360
Changed Files
| File | Additions | Deletions | Status |
| client/main.c | +2 | -2 | modified |
Full Patch
diff --git a/client/main.c b/client/main.c
index e1198a8..165886f 100644
--- a/client/main.c
+++ b/client/main.c
@@ -670,7 +670,7 @@ static struct adapter *find_ctrl_by_address(GList *source, const char *address)
dbus_message_iter_get_basic(&iter, &str);
- if (!strcmp(str, address))
+ if (!strcasecmp(str, address))
return adapter;
}
@@ -691,7 +691,7 @@ static GDBusProxy *find_proxy_by_address(GList *source, const char *address)
dbus_message_iter_get_basic(&iter, &str);
- if (!strcmp(str, address))
+ if (!strcasecmp(str, address))
return proxy;
}