From d2b7fda4975e8f1ecb0173d7bfa1241339de11c9 Mon Sep 17 00:00:00 2001 From: alecdavis Date: Tue, 15 Dec 2009 02:29:50 +0000 Subject: [PATCH] fixes escape to extensions 'o' and 'a', for digits '0' and '*' (closes issue #16437) Reported by: alecdavis Tested by: alecdavis Patch extension_o_a_fix.diff.txt uploaded by alecdavis (license 585) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@234893 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_directory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/app_directory.c b/apps/app_directory.c index deca03922..27ce632ae 100644 --- a/apps/app_directory.c +++ b/apps/app_directory.c @@ -652,11 +652,11 @@ static int do_directory(struct ast_channel *chan, struct ast_config *vmcfg, stru char ext[10] = ""; if (digit == '0' && !goto_exten(chan, S_OR(dialcontext, "default"), "o")) { - return 0; + return digit; } if (digit == '*' && !goto_exten(chan, S_OR(dialcontext, "default"), "a")) { - return 0; + return digit; } ext[0] = digit;