aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2010-11-10 13:16:19 -0600
committerDan Williams <dcbw@redhat.com>2010-11-10 13:16:19 -0600
commit802a6f3a564d981f06042af0a3f36212805f599f (patch)
tree7aae0d5d3dd7d8bb3df35c7fa3ed6830a3e2d947 /src
parentbda86f553aefadb18a3dfa5795f1345c40a19738 (diff)
gsm: fix up CID signed/unsigned confusion
-1 = no APN set, so use modem default. We'll have to fix a few more things up for modems like hso/mbm that don't use ATDT and require CIDs, but this gets us halfway there for other devices.
Diffstat (limited to 'src')
-rw-r--r--src/mm-generic-gsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-generic-gsm.c b/src/mm-generic-gsm.c
index 557c62ca..faf71e56 100644
--- a/src/mm-generic-gsm.c
+++ b/src/mm-generic-gsm.c
@@ -2695,7 +2695,7 @@ connect (MMModem *modem,
MMGenericGsmPrivate *priv = MM_GENERIC_GSM_GET_PRIVATE (modem);
MMCallbackInfo *info;
char *command;
- guint32 cid = mm_generic_gsm_get_cid (MM_GENERIC_GSM (modem));
+ gint cid = mm_generic_gsm_get_cid (MM_GENERIC_GSM (modem));
info = mm_callback_info_new (modem, callback, user_data);