From 7a7d96158ff3ef972b5c51a89c2b3b6a6eadd60d Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 12 May 2010 11:16:16 +0000 Subject: [PATCH] AT+CHUP seems to work better than ATH in our case --- src/phone.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/phone.c b/src/phone.c index f9a5d42..a4873b1 100644 --- a/src/phone.c +++ b/src/phone.c @@ -343,7 +343,8 @@ void phone_call_answer(Phone * phone) /* phone_call_hangup */ void phone_call_hangup(Phone * phone) { - gsm_call_hangup(phone->gsm); + /* XXX seems to work better than hangup */ + gsm_call_reject(phone->gsm); }