| author | Dan Williams <dcbw@redhat.com> | 2009-10-03 16:06:19 (GMT) |
|---|---|---|
| committer | Dan Williams <dcbw@redhat.com> | 2009-10-03 16:06:19 (GMT) |
| commit | b519a984e7c709549e173ff97d712d9c83378244 (patch) | |
| tree | 5dfbc2d61a61153c145005f2266e0a94ebc6885a | |
| parent | 8b0ae181efd1e3856851e6a44e16bd51d440d0ce (diff) | |
bluetooth: fix connection type for DUN
| -rw-r--r-- | src/gnome-bluetooth/network-manager-applet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gnome-bluetooth/network-manager-applet.c b/src/gnome-bluetooth/network-manager-applet.c index 4df2603..2b73fa6 100644 --- a/src/gnome-bluetooth/network-manager-applet.c +++ b/src/gnome-bluetooth/network-manager-applet.c @@ -319,7 +319,7 @@ dun_new_cdma (MobileWizardAccessMethod *method) uuid = nm_utils_uuid_generate (); g_object_set (setting, NM_SETTING_CONNECTION_ID, id, - NM_SETTING_CONNECTION_TYPE, NM_SETTING_CDMA_SETTING_NAME, + NM_SETTING_CONNECTION_TYPE, NM_SETTING_BLUETOOTH_SETTING_NAME, NM_SETTING_CONNECTION_AUTOCONNECT, FALSE, NM_SETTING_CONNECTION_UUID, uuid, NULL); @@ -368,7 +368,7 @@ dun_new_gsm (MobileWizardAccessMethod *method) uuid = nm_utils_uuid_generate (); g_object_set (setting, NM_SETTING_CONNECTION_ID, id, - NM_SETTING_CONNECTION_TYPE, NM_SETTING_GSM_SETTING_NAME, + NM_SETTING_CONNECTION_TYPE, NM_SETTING_BLUETOOTH_SETTING_NAME, NM_SETTING_CONNECTION_AUTOCONNECT, FALSE, NM_SETTING_CONNECTION_UUID, uuid, NULL); |