Fix compile warnings for flex

pull/15/merge
Michael Black W9MDB 2018-04-16 10:37:22 -05:00 zatwierdzone przez Nate Bargmann
rodzic 446210914d
commit 96b43ae337
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -489,7 +489,7 @@ int dttsp_open(RIG *rig)
p = getenv ( "SDR_METERPATH" );
if (!p) {
meterpath = priv->meter_port.pathname;
strncpy(meterpath, rig->state.rigport.pathname, FILPATHLEN - 1);
snprintf(meterpath, FILPATHLEN, "%s", rig->state.rigport.pathname);
if (rig->state.rigport.type.rig == RIG_PORT_UDP_NETWORK) {
p = strrchr(meterpath, ':');
if (p)