From 4f4583dc37492afc68617213d36fb192b1e5cbe4 Mon Sep 17 00:00:00 2001 From: WB2OSZ Date: Sun, 11 Jun 2017 22:45:22 -0400 Subject: [PATCH] Issue 66 - In log.c (line 242) "telemetry" should be inserted ahead of "comment" in the header string to be written out. --- log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log.c b/log.c index fa86c3e..f515e02 100644 --- a/log.c +++ b/log.c @@ -239,7 +239,7 @@ void log_write (int chan, decode_aprs_t *A, packet_t pp, alevel_t alevel, retry_ // only if this will be the first line. if ( ! already_there) { - fprintf (g_log_fp, "chan,utime,isotime,source,heard,level,error,dti,name,symbol,latitude,longitude,speed,course,altitude,frequency,offset,tone,system,status,comment\n"); + fprintf (g_log_fp, "chan,utime,isotime,source,heard,level,error,dti,name,symbol,latitude,longitude,speed,course,altitude,frequency,offset,tone,system,status,telemetry,comment\n"); } }