diff options
author | Dan Williams <dcbw@redhat.com> | 2011-02-01 22:48:55 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-02-01 22:48:55 -0600 |
commit | d1f4b07e0effa7f203ea56bd8120839a9d39b992 (patch) | |
tree | b3c4108f72494c874d5736cc9d4d1074969bbce4 | |
parent | e208c5284672312c39adac70416b03b46a0b98ce (diff) |
icera: fix username and password ordering for authentication
-rw-r--r-- | plugins/mm-modem-icera.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mm-modem-icera.c b/plugins/mm-modem-icera.c index 3f71c5b6..22c25b94 100644 --- a/plugins/mm-modem-icera.c +++ b/plugins/mm-modem-icera.c @@ -526,8 +526,8 @@ mm_modem_icera_do_connect (MMModemIcera *self, else { command = g_strdup_printf ("%%IPDPCFG=%d,0,1,\"%s\",\"%s\"", cid, - priv->password ? priv->password : "", - priv->username ? priv->username : ""); + priv->username ? priv->username : "", + priv->password ? priv->password : ""); } |