diff --git a/ChangeLog b/ChangeLog index e22628defa..8e775dc4a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-24 Dan Williams + + * src/nm-gsm-device.c + - (set_apn): remove erroneous spaces in AT+CGDCONT command (Jerone Young) + 2008-10-23 Dan Williams * src/ppp-manager/nm-ppp-manager.c diff --git a/src/nm-gsm-device.c b/src/nm-gsm-device.c index dc44cbfc45..7e57c78af0 100644 --- a/src/nm-gsm-device.c +++ b/src/nm-gsm-device.c @@ -213,7 +213,7 @@ set_apn (NMGsmDevice *device) return; } - command = g_strdup_printf ("AT+CGDCONT=%d, \"IP\", \"%s\"", cid, setting->apn); + command = g_strdup_printf ("AT+CGDCONT=%d,\"IP\",\"%s\"", cid, setting->apn); modem_wait_for_reply (device, command, 7, responses, responses, set_apn_done, GUINT_TO_POINTER (cid)); g_free (command); }