summaryrefslogtreecommitdiff
path: root/say.c
diff options
context:
space:
mode:
authorBJ Weschke <bweschke@btwtech.com>2006-05-03 22:53:38 +0000
committerBJ Weschke <bweschke@btwtech.com>2006-05-03 22:53:38 +0000
commit326c82e1c48577bb6c8ba3fecce8154869dbc126 (patch)
treee564a74b58ba87a31282352a6dffe7320bbc8008 /say.c
parent8ce9bec4ce977642ae12c0e6d77b68fe59fc931a (diff)
Fix "o'clock" from being said twice in French. #6900 (casper)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24640 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'say.c')
-rw-r--r--say.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/say.c b/say.c
index 8cc1f5809..d50bb11b9 100644
--- a/say.c
+++ b/say.c
@@ -4082,11 +4082,6 @@ int ast_say_date_with_format_fr(struct ast_channel *chan, time_t time, const cha
case 'k':
/* 24-Hour */
res = ast_say_number(chan, tm.tm_hour, ints, lang, (char * ) NULL);
- if (!res) {
- if (format[offset] == 'H') {
- res = wait_file(chan,ints, "digits/oclock",lang);
- }
- }
if (!res)
res = wait_file(chan,ints, "digits/oclock",lang);
break;