aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_morsecode.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-03 02:17:00 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-03 02:17:00 +0000
commit36966327ad3b42e147f599a6b4f872ed5a7b0ab6 (patch)
tree56eb4af048ecc7f530182a1793df65c105f08440 /apps/app_morsecode.c
parentae38040ccb56b2d32459381465fdcf42bff37cc3 (diff)
Ooops, those characters weren't really periods (credit to John Olson)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31690 f38db490-d61c-443f-a65b-d21fe96a405b
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)