summaryrefslogtreecommitdiff
path: root/driver_ais.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-07-22 13:44:21 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-07-22 13:45:08 -0400
commit14ade3253974b9c41a1f86e7f976e13c5024163a (patch)
treee64f2e55d078f1bce7f672c03a1f308b182205cc /driver_ais.c
parentd3cb684caa9fa4080b380e4d248dd56dec97b604 (diff)
downloadgpsd-14ade3253974b9c41a1f86e7f976e13c5024163a.tar.gz
Fix error in sixbit decoding.
Curiously, none if the regression tests are affected.
Diffstat (limited to 'driver_ais.c')
-rw-r--r--driver_ais.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver_ais.c b/driver_ais.c
index daf83e27..b0be6c48 100644
--- a/driver_ais.c
+++ b/driver_ais.c
@@ -34,7 +34,7 @@ static void from_sixbit(unsigned char *bitvec, uint start, int count, char *to)
const char sixchr[] = "abcd";
#else
const char sixchr[64] =
- "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^- !\"#$%&'()*+,-./0123456789:;<=>?";
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
#endif /* S_SPLINT_S */
int i;
char newchar;