From c0c1c35e9a0bdd89c5e920e406ffdcff9b327758 Mon Sep 17 00:00:00 2001
From: Joshua Colp <jcolp@digium.com>
Date: Mon, 11 Dec 2006 05:34:53 +0000
Subject: [PATCH] Merged revisions 48379 via svnmerge from
 https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r48379 | file | 2006-12-11 00:30:01 -0500 (Mon, 11 Dec 2006) | 2 lines

Use the correct API call to say a device state changed. (Yes, I'm a nub.)

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48380 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_meetme.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 30b6b8d64d..003363fc1a 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -1950,7 +1950,7 @@ bailoutandtrynormal:
 		if (!conf->users)
 			ast_device_state_changed("meetme:%s", conf->confno);
 		if (confflags & (CONFFLAG_SLA_STATION|CONFFLAG_SLA_TRUNK))
-			st_device_state_changed("SLA:%s", conf->confno + 4);
+			ast_device_state_changed("SLA:%s", conf->confno + 4);
 
 		if (AST_LIST_EMPTY(&conf->userlist)) {
 			/* close this one when no more users and no references*/
-- 
GitLab