From 08e0384abe9989ee0f7c673f6b8645b6164c56e9 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Wed, 27 Apr 2016 15:40:30 +0200 Subject: [PATCH] event.c: fix compilation... --- coreapi/event.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/coreapi/event.c b/coreapi/event.c index 414887154..2d6e7eaf5 100644 --- a/coreapi/event.c +++ b/coreapi/event.c @@ -334,7 +334,7 @@ const char* linphone_event_get_custom_header(LinphoneEvent* ev, const char* name void linphone_event_terminate(LinphoneEvent *lev){ // if event was already terminated (including on error), we should not terminate it again // otherwise it will be unreffed twice. - if (lev->publish_state == LinphonePublishError || lev->publish_state == LinphoneSubscriptionTerminated) { + if (lev->publish_state == LinphonePublishError || lev->publish_state == LinphonePublishCleared) { return; } if (lev->subscription_state == LinphoneSubscriptionError || lev->subscription_state == LinphoneSubscriptionTerminated) { @@ -414,10 +414,10 @@ LinphoneCore *linphone_event_get_core(const LinphoneEvent *lev){ static belle_sip_error_code _linphone_event_marshall(belle_sip_object_t *obj, char* buff, size_t buff_size, size_t *offset) { LinphoneEvent *ev = (LinphoneEvent*)obj; belle_sip_error_code err = BELLE_SIP_OK; - - err = belle_sip_snprintf(buff, buff_size, offset, "%s of %s", ev->dir == LinphoneSubscriptionIncoming ? + + err = belle_sip_snprintf(buff, buff_size, offset, "%s of %s", ev->dir == LinphoneSubscriptionIncoming ? "Incoming Subscribe" : (ev->dir == LinphoneSubscriptionOutgoing ? "Outgoing subscribe" : "Publish"), ev->name); - + return err; }