Skip to content

Commit d747620

Browse files
committed
Add another search location for tocalls.txt.
1 parent 74cf91c commit d747620

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

src/decode_aprs.c

+6-4
Original file line numberDiff line numberDiff line change
@@ -1967,6 +1967,7 @@ static void aprs_status_report (decode_aprs_t *A, char *info, int ilen)
19671967
/*
19681968
* Do we have format with 6 character Maidenhead locator?
19691969
*/
1970+
19701971
else if (get_maidenhead (A, pm6->mhead6) == 6) {
19711972

19721973
memset (A->g_maidenhead, 0, sizeof(A->g_maidenhead));
@@ -3788,11 +3789,12 @@ static struct tocalls_s {
37883789
static int num_tocalls = 0;
37893790

37903791
// Make sure the array is null terminated.
3791-
// If search order is changed, do the same in symbols.c
3792+
// If search order is changed, do the same in symbols.c for consistency.
37923793

37933794
static const char *search_locations[] = {
3794-
(const char *) "tocalls.txt",
3795-
(const char *) "../data/tocalls.txt",
3795+
(const char *) "tocalls.txt", // CWD
3796+
(const char *) "data/tocalls.txt", // Windows with CMake
3797+
(const char *) "../data/tocalls.txt", // ?
37963798
#ifndef __WIN32__
37973799
(const char *) "/usr/local/share/direwolf/tocalls.txt",
37983800
(const char *) "/usr/share/direwolf/tocalls.txt",
@@ -3804,7 +3806,7 @@ static const char *search_locations[] = {
38043806
// path as well.
38053807
(const char *) "/opt/local/share/direwolf/tocalls.txt",
38063808
#endif
3807-
(const char *) NULL
3809+
(const char *) NULL // Important - Indicates end of list.
38083810
};
38093811

38103812
static int tocall_cmp (const void *px, const void *py)

src/symbols.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -261,12 +261,12 @@ static const struct {
261261

262262

263263
// Make sure the array is null terminated.
264-
// If search order is changed, do the same in decode_aprs.c
264+
// If search order is changed, do the same in decode_aprs.c for consistency.
265265

266266
static const char *search_locations[] = {
267-
(const char *) "symbols-new.txt",
268-
(const char *) "data/symbols-new.txt",
269-
(const char *) "../data/symbols-new.txt",
267+
(const char *) "symbols-new.txt", // CWD
268+
(const char *) "data/symbols-new.txt", // Windows with Cmake
269+
(const char *) "../data/symbols-new.txt", // ?
270270
#ifndef __WIN32__
271271
(const char *) "/usr/local/share/direwolf/symbols-new.txt",
272272
(const char *) "/usr/share/direwolf/symbols-new.txt",
@@ -278,7 +278,7 @@ static const char *search_locations[] = {
278278
// path as well.
279279
(const char *) "/opt/local/share/direwolf/symbols-new.txt",
280280
#endif
281-
(const char *) NULL
281+
(const char *) NULL // Important - Indicates end of list.
282282
};
283283

284284

0 commit comments

Comments
 (0)