From 1d7a4b9e829849902b5483d37495c7d8d8f52e56 Mon Sep 17 00:00:00 2001 From: "David E. Tiller" <3858971+dtiller@users.noreply.github.com> Date: Fri, 8 Apr 2022 14:39:59 -0400 Subject: [PATCH] Changed FRONT>REAR to dir=f2r, etc for consistency. --- src/eotd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/eotd.c b/src/eotd.c index ae228d2..9fd044b 100644 --- a/src/eotd.c +++ b/src/eotd.c @@ -415,9 +415,11 @@ void eotd_to_text (unsigned char *eotd, int eotd_len, char *text, int text_size) #ifndef EOTD_RAW if (eotd_type == EOTD_TYPE_F2R) { - strlcat(text, "FRONT>REAR:", text_size); + //strlcat(text, "FRONT>REAR:", text_size); + strlcat(text, ":dir-f2r,", text_size); } else { - strlcat(text, "REAR>FRONT:", text_size); + //strlcat(text, "REAR>FRONT:", text_size); + strlcat(text, ":dir=r2f,", text_size); } #ifdef EOTD_TIMESTAMP