Skip to content

Commit 669a522

Browse files
committed
fix bug of wsprsim_utils.c (WSJT-X 2.6.0-rc1)
1 parent 09539d8 commit 669a522

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wsprd/wsprsim_utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ int get_wspr_channel_symbols(char *rawmessage, char *hashtab, char *loctab,
194194
// Use the presence and/or absence of "<" and "/" to decide what
195195
// type of message. No sanity checks! Beware!
196196

197-
if (i1 > 3 && i1 < 7 && i2 == mlen && i3 == mlen) {
197+
if (i1 >= 3 && i1 < 7 && i2 == mlen && i3 == mlen) {
198198
// Type 1 message: K9AN EN50 33
199199
// xxnxxxx xxnn nn
200200
callsign = strtok(message, " ");

0 commit comments

Comments
 (0)