From c8d8977729066d1ff9f73187df7cc977c6041cc0 Mon Sep 17 00:00:00 2001 From: "David E. Tiller" <3858971+dtiller@users.noreply.github.com> Date: Sat, 14 May 2022 13:15:51 -0400 Subject: [PATCH] Fixed typo. --- src/eotd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eotd.c b/src/eotd.c index 9fd044b..9167072 100644 --- a/src/eotd.c +++ b/src/eotd.c @@ -416,7 +416,7 @@ 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, ":dir-f2r,", text_size); + strlcat(text, ":dir=f2r,", text_size); } else { //strlcat(text, "REAR>FRONT:", text_size); strlcat(text, ":dir=r2f,", text_size);