summaryrefslogtreecommitdiff
path: root/src/ppp-manager/nm-ppp-manager.c
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2009-06-11 00:39:12 -0400
committerDan Williams <dcbw@redhat.com>2009-06-11 00:39:12 -0400
commitc9067d8fedf6f6f2d530fd68bbfca7ce68638d38 (patch)
tree79fdb0fae57ca74b51a647b0485ecaf5f91ac580 /src/ppp-manager/nm-ppp-manager.c
parent69eccdae34d85cadb20233aab6069f64385eef81 (diff)
everything: use libgudev instead of HAL; merge NM and nm-system-settings
The only thing that doesn't work yet is the system-settings service's "auto eth" connections for ethernet devices that don't have an existing connection. Might also have issues with unmanaged devices that can't provide a MAC address until they are brought up, but we'll see.
Diffstat (limited to 'src/ppp-manager/nm-ppp-manager.c')
-rw-r--r--src/ppp-manager/nm-ppp-manager.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ppp-manager/nm-ppp-manager.c b/src/ppp-manager/nm-ppp-manager.c
index 73fd1ed880..7fdf2ea808 100644
--- a/src/ppp-manager/nm-ppp-manager.c
+++ b/src/ppp-manager/nm-ppp-manager.c
@@ -408,12 +408,12 @@ impl_ppp_manager_need_secrets (NMPPPManager *manager,
* servers (T-Mobile USA) appear to ask a few times when they actually don't
* even care what you pass back.
*/
- nm_act_request_request_connection_secrets (priv->act_req,
- setting_name,
- tries > 1 ? TRUE : FALSE,
- SECRETS_CALLER_PPP,
- hint1,
- hint2);
+ nm_act_request_get_secrets (priv->act_req,
+ setting_name,
+ tries > 1 ? TRUE : FALSE,
+ SECRETS_CALLER_PPP,
+ hint1,
+ hint2);
g_object_set_data (G_OBJECT (connection), PPP_MANAGER_SECRET_TRIES, GUINT_TO_POINTER (++tries));
priv->pending_secrets_context = context;