summaryrefslogtreecommitdiff
path: root/apps/app_morsecode.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-06-03 02:17:00 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-06-03 02:17:00 +0000
commit73a85ff2503f75caaac6688be7cd3a5a155e9aba (patch)
tree56eb4af048ecc7f530182a1793df65c105f08440 /apps/app_morsecode.c
parent0eb9ea50a0d75350637878d2a2b16f44df1a305c (diff)
Ooops, those characters weren't really periods (credit to John Olson)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31690 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_morsecode.c')
-rw-r--r--apps/app_morsecode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_morsecode.c b/apps/app_morsecode.c
index 81fe6a321..0145eb961 100644
--- a/apps/app_morsecode.c
+++ b/apps/app_morsecode.c
@@ -86,18 +86,18 @@ static char *morsecode[] = {
".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--",
"-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..",
"-.--.-", /* 91 - [ (really '(') */
- "-··-·", /* 92 - \ (really '/') */
+ "-..-.", /* 92 - \ (really '/') */
"-.--.-", /* 93 - ] (really ')') */
"", /* 94 - ^ */
- "··--·-", /* 95 - _ */
+ "..--.-", /* 95 - _ */
".----.", /* 96 - ` */
".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--",
"-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..",
"-.--.-", /* 123 - { (really '(') */
"", /* 124 - | */
"-.--.-", /* 125 - } (really ')') */
- "-··-·", /* 126 - ~ (really bar) */
- "· · ·", /* 127 - <del> (error) */
+ "-..-.", /* 126 - ~ (really bar) */
+ ". . .", /* 127 - <del> (error) */
};
static void playtone(struct ast_channel *chan, int tone, int len)