Skip to content

Commit 4c5004b

Browse files
committed
Fix new warnings for gcc 8.3.
1 parent 90921b9 commit 4c5004b

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

geotranz/mgrs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ long Make_MGRS_String (char* MGRS,
400400
if (Zone)
401401
i = sprintf (MGRS+i,"%2.2ld",Zone);
402402
else
403-
strncpy(MGRS, " ", 2); // 2 spaces
403+
strcpy(MGRS, " "); // 2 spaces - Should i be set to 2?
404404

405405
for (j=0;j<3;j++)
406406
MGRS[i++] = alphabet[Letters[j]];

geotranz/usng.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ long Make_USNG_String (char* USNG,
367367
if (Zone)
368368
i = sprintf (USNG+i,"%2.2ld",Zone);
369369
else
370-
strncpy(USNG, " ", 2); // 2 spaces
370+
strcpy(USNG, " "); // 2 spaces - Should i be set to 2?
371371

372372
for (j=0;j<3;j++)
373373
USNG[i++] = alphabet[Letters[j]];

igate.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1863,7 +1863,7 @@ static void maybe_xmit_packet_from_igate (char *message, int to_chan)
18631863
* -> Raise the rate limiting value.
18641864
*/
18651865
if (ig_to_tx_allow (pp3, to_chan)) {
1866-
char radio [500];
1866+
char radio [2400];
18671867
packet_t pradio;
18681868

18691869
snprintf (radio, sizeof(radio), "%s>%s%d%d%s:}%s",

kissutil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
774774
printf ("ERROR - Invalid KISS data frame from TNC.\n");
775775
}
776776
else {
777-
char prefix[100]; // Channel and optional timestamp.
777+
char prefix[120]; // Channel and optional timestamp.
778778
// Like [0] or [2 12:34:56]
779779

780780
char addrs[AX25_MAX_ADDRS*AX25_MAX_ADDR_LEN]; // Like source>dest,digi,...,digi:

log2gpx.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,10 @@ static void read_csv(FILE *fp)
325325
things[num_things].speed = speed;
326326
things[num_things].course = course;
327327
things[num_things].alt = alt;
328-
strncpy (things[num_things].time, pisotime, sizeof(things[num_things].time));
329-
strncpy (things[num_things].name, pname, sizeof(things[num_things].name));
330-
strncpy (things[num_things].desc, desc, sizeof(things[num_things].desc));
331-
strncpy (things[num_things].comment, comment, sizeof(things[num_things].comment));
328+
strlcpy (things[num_things].time, pisotime, sizeof(things[num_things].time));
329+
strlcpy (things[num_things].name, pname, sizeof(things[num_things].name));
330+
strlcpy (things[num_things].desc, desc, sizeof(things[num_things].desc));
331+
strlcpy (things[num_things].comment, comment, sizeof(things[num_things].comment));
332332

333333
num_things++;
334334
}
@@ -543,4 +543,4 @@ static void process_things (int first, int last)
543543
}
544544
printf (" <name>%s</name>\n", safe_name);
545545
printf (" </wpt>\n");
546-
}
546+
}

mheard.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ static void mheard_dump (void)
243243
int i;
244244
mheard_t *mptr;
245245
time_t now = time(NULL);
246-
char stuff[80];
247-
char rf[16]; // hours:minutes
248-
char is[16];
246+
char stuff[120];
247+
char rf[20]; // hours:minutes
248+
char is[20];
249249
char position[40];
250250
mheard_t *station[MAXDUMP];
251251
int num_stations = 0;

0 commit comments

Comments
 (0)