aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2021-03-24 11:00:22 +0100
committerAleksander Morgado <aleksander@aleksander.es>2021-03-24 11:00:22 +0100
commit4b19b9693f03ab48c6707508d27b24e38294e022 (patch)
tree52cb8f4d0a00ff3c327e95badf52dbf2fe243856
parent16ade1c5d23b965628a59d071232ddb49fde8561 (diff)
libmm-glib,bearer-properties: fix 'allowed-auth' comparison
-rw-r--r--libmm-glib/mm-bearer-properties.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmm-glib/mm-bearer-properties.c b/libmm-glib/mm-bearer-properties.c
index 91827413..e81d368a 100644
--- a/libmm-glib/mm-bearer-properties.c
+++ b/libmm-glib/mm-bearer-properties.c
@@ -810,7 +810,7 @@ mm_bearer_properties_cmp (MMBearerProperties *a,
return FALSE;
if (!cmp_ip_type (a->priv->ip_type, b->priv->ip_type, flags))
return FALSE;
- if (!cmp_allowed_auth (a->priv->allowed_auth, a->priv->allowed_auth, flags))
+ if (!cmp_allowed_auth (a->priv->allowed_auth, b->priv->allowed_auth, flags))
return FALSE;
if (!cmp_str (a->priv->user, b->priv->user, flags))
return FALSE;