diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-05 15:34:35 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-05 15:34:35 +0200 |
commit | 3b76e79f14e279a6526809e630e45e4f760d77de (patch) | |
tree | bb479b57c7ad1362f05a0532a7133c0c5232dfeb /package/asterisk/patches/patch-apps_app_followme_c | |
parent | 9bfe4f2061f377306619fa479bc0e7adafb22125 (diff) | |
parent | 1879491b2b6e799b20ac06d1b510726eb200944f (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/asterisk/patches/patch-apps_app_followme_c')
-rw-r--r-- | package/asterisk/patches/patch-apps_app_followme_c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/asterisk/patches/patch-apps_app_followme_c b/package/asterisk/patches/patch-apps_app_followme_c deleted file mode 100644 index 8ecfa9226..000000000 --- a/package/asterisk/patches/patch-apps_app_followme_c +++ /dev/null @@ -1,26 +0,0 @@ ---- asterisk-1.6.2.1.orig/apps/app_followme.c 2009-09-15 18:06:24.000000000 +0200 -+++ asterisk-1.6.2.1/apps/app_followme.c 2010-02-14 10:33:51.540422962 +0100 -@@ -172,7 +172,9 @@ static int ynlongest = 0; - - static const char *featuredigittostr; - static int featuredigittimeout = 5000; /*!< Feature Digit Timeout */ --static const char *defaultmoh = "default"; /*!< Default Music-On-Hold Class */ -+static const char *defaultmoh; /*!< Default Music-On-Hold Class */ -+ -+ - - static char takecall[20] = "1", nextindp[20] = "2"; - static char callfromprompt[PATH_MAX] = "followme/call-from"; -@@ -236,6 +238,7 @@ static struct call_followme *alloc_profi - - static void init_profile(struct call_followme *f) - { -+ defaultmoh = "default"; - f->active = 1; - ast_copy_string(f->moh, defaultmoh, sizeof(f->moh)); - } -@@ -1195,3 +1198,4 @@ AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MO - .unload = unload_module, - .reload = reload, - ); -+ |