You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
846 B
36 lines
846 B
From: Sipwise Development Team <support@sipwise.com>
|
|
Date: Mon, 4 Nov 2024 15:37:28 +0100
|
|
Subject: sipwise_define_module
|
|
|
|
---
|
|
apps/app_playback.c | 2 ++
|
|
apps/app_voicemail.c | 2 ++
|
|
2 files changed, 4 insertions(+)
|
|
|
|
diff --git a/apps/app_playback.c b/apps/app_playback.c
|
|
index 56c2a86..48ade9f 100644
|
|
--- a/apps/app_playback.c
|
|
+++ b/apps/app_playback.c
|
|
@@ -31,6 +31,8 @@
|
|
|
|
#include "asterisk.h"
|
|
|
|
+#define AST_MODULE "app_playback"
|
|
+
|
|
#include "asterisk/file.h"
|
|
#include "asterisk/pbx.h"
|
|
#include "asterisk/module.h"
|
|
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
|
|
index 023d720..a9f4156 100644
|
|
--- a/apps/app_voicemail.c
|
|
+++ b/apps/app_voicemail.c
|
|
@@ -100,6 +100,8 @@
|
|
#endif
|
|
#endif
|
|
|
|
+#define AST_MODULE "voicemail"
|
|
+
|
|
#include "asterisk/paths.h" /* use ast_config_AST_SPOOL_DIR */
|
|
#include <sys/time.h>
|
|
#include <sys/stat.h>
|