summaryrefslogtreecommitdiff
path: root/drivers/calypsomodem
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-07-15 09:41:04 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-07-15 09:41:04 -0500
commit67c6a3a035add2fdbf6e107a5f2741a4209087dc (patch)
tree7ad221ed33821568b17b99ce4c61e2c0f049238d /drivers/calypsomodem
parent99f6c920f5d0db83a148090f66335a5129246e02 (diff)
downloadofono-67c6a3a035add2fdbf6e107a5f2741a4209087dc.tar.gz
calypsomodem: dtmf chars do not need quotes
Diffstat (limited to 'drivers/calypsomodem')
-rw-r--r--drivers/calypsomodem/voicecall.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/calypsomodem/voicecall.c b/drivers/calypsomodem/voicecall.c
index ae49eb0d..511d533f 100644
--- a/drivers/calypsomodem/voicecall.c
+++ b/drivers/calypsomodem/voicecall.c
@@ -209,10 +209,10 @@ static void calypso_send_dtmf(struct ofono_voicecall *vc, const char *dtmf,
return;
}
- s = sprintf(buf, "AT+VTS=\"%c\"", dtmf[0]);
+ s = sprintf(buf, "AT+VTS=%c", dtmf[0]);
for (i = 1; i < len; i++)
- s += sprintf(buf + s, ";+VTS=\"%c\"", dtmf[i]);
+ s += sprintf(buf + s, ";+VTS=%c", dtmf[i]);
calypso_template(vc, buf, cb, data);
g_free(buf);