agilent-dmm: fix AC/DC mode detection

This commit is contained in:
Bert Vermeulen 2012-09-09 22:49:07 +02:00
parent f2e86bbfa6
commit e066c32a25
1 changed files with 2 additions and 2 deletions

View File

@ -324,8 +324,8 @@ SR_PRIV int agdmm_conf_recv(const struct sr_dev_inst *sdi, GMatchInfo *match)
sr_dbg("agilent-dmm: unknown first argument"); sr_dbg("agilent-dmm: unknown first argument");
g_free(mstr); g_free(mstr);
if (g_match_info_get_match_count(match) == 3) { if (g_match_info_get_match_count(match) == 4) {
mstr = g_match_info_fetch(match, 1); mstr = g_match_info_fetch(match, 3);
/* Third value, if present, is always AC or DC. */ /* Third value, if present, is always AC or DC. */
if (!strcmp(mstr, "AC")) if (!strcmp(mstr, "AC"))
devc->cur_mqflags |= SR_MQFLAG_AC; devc->cur_mqflags |= SR_MQFLAG_AC;