aboutsummaryrefslogtreecommitdiffstats
path: root/say.c
diff options
context:
space:
mode:
Diffstat (limited to 'say.c')
-rwxr-xr-xsay.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/say.c b/say.c
index ba3dd52cf..b6e2cebfd 100755
--- a/say.c
+++ b/say.c
@@ -47,6 +47,9 @@ int ast_say_digit_str(struct ast_channel *chan, char *fn2, char *ints, char *lan
case ('#'):
snprintf(fn, sizeof(fn), "digits/pound");
break;
+ case ('-'):
+ snprintf(fn, sizeof(fn), "digits/minus");
+ break;
default:
if((fn2[num] >= '0') && (fn2[num] <= '9')){ /* Must be in {0-9} */
snprintf(fn, sizeof(fn), "digits/%c", fn2[num]);