aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-08-02 21:27:25 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-08-02 21:27:25 +0000
commitdc1aaee973ab66b2415ea0a71b2106154f8b38b4 (patch)
tree4beff877cafe7f15477a493741e78c24953dc12b /apps
parentb45eb7ca867ea7ed26cd4b503b99a5265083a358 (diff)
Merged revisions 280671 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ........ r280671 | tilghman | 2010-08-02 16:26:11 -0500 (Mon, 02 Aug 2010) | 2 lines Allow the pipe, but also allow the comma ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@280672 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 4b047badc..4ff67e371 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -11954,7 +11954,7 @@ static int load_config(int reload)
if ((z = ast_malloc(sizeof(*z)))) {
char *msg_format, *tzone;
msg_format = ast_strdupa(var->value);
- tzone = strsep(&msg_format, "|");
+ tzone = strsep(&msg_format, "|,");
if (msg_format) {
ast_copy_string(z->name, var->name, sizeof(z->name));
ast_copy_string(z->timezone, tzone, sizeof(z->timezone));