aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Chan <benchan@chromium.org>2018-10-26 10:56:57 -0700
committerBen Chan <benchan@chromium.org>2018-10-26 10:56:57 -0700
commitb76db60313139126c6d932da89479a5ed1d5074f (patch)
treefd86ceafc73a8c7c011066af1108081c328ff724
parentbe81f7e5a21cd42b708ab3b5af5c56cd4fdff35c (diff)
ublox: fix username and password passed to +UAUTHREQ
-rw-r--r--plugins/ublox/mm-broadband-bearer-ublox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ublox/mm-broadband-bearer-ublox.c b/plugins/ublox/mm-broadband-bearer-ublox.c
index 1adcaa26..76f307c8 100644
--- a/plugins/ublox/mm-broadband-bearer-ublox.c
+++ b/plugins/ublox/mm-broadband-bearer-ublox.c
@@ -457,8 +457,8 @@ out:
cmd = g_strdup_printf ("+UAUTHREQ=%u,%u,%s,%s",
ctx->cid,
ublox_auth,
- quoted_password,
- quoted_user);
+ quoted_user,
+ quoted_password);
g_free (quoted_user);
g_free (quoted_password);