Can't implement Multiparty Hangup without chld

This commit is contained in:
Denis Kenzior 2009-06-12 11:44:32 -05:00
parent 46ac5c564c
commit 9b9365ffae
1 changed files with 6 additions and 0 deletions

View File

@ -1002,6 +1002,12 @@ static DBusMessage *multiparty_hangup(DBusConnection *conn,
if (!calls->ops->release_specific)
return dbus_gsm_not_implemented(msg);
if (!calls->ops->release_all_held)
return dbus_gsm_not_implemented(msg);
if (!calls->ops->release_all_active)
return dbus_gsm_not_implemented(msg);
if (g_slist_length(calls->multiparty_list) == 0) {
DBusMessage *reply = dbus_message_new_method_return(msg);
return reply;