Merge "app_voicemail: Don't split mailbox options on comma" into 16

This commit is contained in:
Friendly Automation 2019-04-16 11:36:27 -05:00 committed by Gerrit Code Review
commit ff7b0acc4e
1 changed files with 2 additions and 2 deletions

View File

@ -12531,8 +12531,8 @@ static int append_mailbox(const char *context, const char *box, const char *data
if (stringp && (s = strsep(&stringp, ","))) {
ast_copy_string(vmu->pager, s, sizeof(vmu->pager));
}
if (stringp && (s = strsep(&stringp, ","))) {
apply_options(vmu, s);
if (stringp) {
apply_options(vmu, stringp);
}
switch (vmu->passwordlocation) {