From 9b421bfd4358c3189ea717f2a2c4050eb0bdcb01 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Tue, 3 Apr 2012 16:04:57 +0200 Subject: [PATCH] fix broken compile --- coreapi/linphonecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 6f459b2be..f99cb9c29 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -4583,7 +4583,7 @@ void linphone_core_start_dtmf_stream(LinphoneCore* lc) { } void linphone_core_stop_dtmf_stream(LinphoneCore* lc) { - if (lc->ringstream && dmfs_playing_start_time!=0) { + if (lc->ringstream && lc->dmfs_playing_start_time!=0) { ring_stop(lc->ringstream); lc->ringstream=NULL; }