diff options
author | Dan Williams <dcbw@redhat.com> | 2010-03-21 17:48:19 -0700 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-03-21 17:48:19 -0700 |
commit | 6598d2ef7f501feb799652db0ebaf25e4cba1a45 (patch) | |
tree | 77a3102927cc3c82e14edb2d652763633865629a | |
parent | 96f5400cc92589f6419b9dc961d7c3cff97f7f2a (diff) |
core: parse the right thing on QCDM version info response
-rw-r--r-- | src/mm-plugin-base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-plugin-base.c b/src/mm-plugin-base.c index bcdda7f1..dcaa405b 100644 --- a/src/mm-plugin-base.c +++ b/src/mm-plugin-base.c @@ -473,7 +473,7 @@ qcdm_verinfo_cb (MMQcdmSerialPort *port, } /* Parse the response */ - result = qcdm_cmd_version_info_result ((const char *) response, response->len, &dm_error); + result = qcdm_cmd_version_info_result ((const char *) response->data, response->len, &dm_error); if (!result) { g_warning ("(%s) failed to parse QCDM version info command result: (%d) %s.", g_udev_device_get_name (priv->port), |