summaryrefslogtreecommitdiff
path: root/apps/app_zapateller.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_zapateller.c')
-rw-r--r--apps/app_zapateller.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/apps/app_zapateller.c b/apps/app_zapateller.c
index ccdeba2b7..b2703ec2a 100644
--- a/apps/app_zapateller.c
+++ b/apps/app_zapateller.c
@@ -21,14 +21,14 @@
* \brief Playback the special information tone to get rid of telemarketers
*
* \author Mark Spencer <markster@digium.com>
- *
+ *
* \ingroup applications
*/
/*** MODULEINFO
<support_level>extended</support_level>
***/
-
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
@@ -114,15 +114,15 @@ static int zapateller_exec(struct ast_channel *chan, const char *data)
return res;
}
- if (!res)
+ if (!res)
res = ast_tonepair(chan, 950, 0, 330, 0);
- if (!res)
+ if (!res)
res = ast_tonepair(chan, 1400, 0, 330, 0);
- if (!res)
+ if (!res)
res = ast_tonepair(chan, 1800, 0, 330, 0);
- if (!res)
+ if (!res)
res = ast_tonepair(chan, 0, 0, 1000, 0);
-
+
pbx_builtin_setvar_helper(chan, "ZAPATELLERSTATUS", "ZAPPED");
return res;
}
@@ -138,4 +138,3 @@ static int load_module(void)
}
AST_MODULE_INFO_STANDARD_EXTENDED(ASTERISK_GPL_KEY, "Block Telemarketers with Special Information Tone");
-