* [PATCH] voicecall: fix CHLD support reply
@ 2011-05-17 14:32 =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-05-17 4:38 ` Denis Kenzior
0 siblings, 1 reply; 2+ messages in thread
From: =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau @ 2011-05-17 14:32 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 626 bytes --]
---
+CHLD=(...) syntax is incorrect. Instead, use +CHLD: (...).
src/voicecall.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/voicecall.c b/src/voicecall.c
index d46f463..2ab67ac 100644
--- a/src/voicecall.c
+++ b/src/voicecall.c
@@ -2838,8 +2838,8 @@ static void emulator_chld_cb(struct ofono_emulator *em,
goto fail;
case OFONO_EMULATOR_REQUEST_TYPE_SUPPORT:
- memcpy(buf, "+CHLD=(", 7);
- info = buf + 7;
+ memcpy(buf, "+CHLD: (", 8);
+ info = buf + 8;
ADD_CHLD_SUPPORT(vc->driver->release_all_held &&
vc->driver->set_udub, "0")
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-05-17 14:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-17 14:32 [PATCH] voicecall: fix CHLD support reply =?unknown-8bit?q?Fr=C3=A9d=C3=A9ric?= Dalleau
2011-05-17 4:38 ` Denis Kenzior
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.