Skip to content

Commit 1d7a4b9

Browse files
committed
Changed FRONT>REAR to dir=f2r, etc for consistency.
1 parent 89bc82b commit 1d7a4b9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: src/eotd.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -415,9 +415,11 @@ void eotd_to_text (unsigned char *eotd, int eotd_len, char *text, int text_size)
415415

416416
#ifndef EOTD_RAW
417417
if (eotd_type == EOTD_TYPE_F2R) {
418-
strlcat(text, "FRONT>REAR:", text_size);
418+
//strlcat(text, "FRONT>REAR:", text_size);
419+
strlcat(text, ":dir-f2r,", text_size);
419420
} else {
420-
strlcat(text, "REAR>FRONT:", text_size);
421+
//strlcat(text, "REAR>FRONT:", text_size);
422+
strlcat(text, ":dir=r2f,", text_size);
421423
}
422424

423425
#ifdef EOTD_TIMESTAMP

0 commit comments

Comments
 (0)