This commit is contained in:
2026-01-08 08:17:23 +01:00
parent 47b4a51ca2
commit eed612f457
3 changed files with 5 additions and 3 deletions

View File

@@ -421,7 +421,8 @@ void parseEncryptedPayload (const EncryptedPayloadStruct *enc) {
}
}
#define STR_EQ_LIT(s, lit) (memcmp ((s), (lit), sizeof (lit) - 1) == 0)
//#define STR_EQ_LIT(s, lit) (memcmp ((s), (lit), sizeof (lit) - 1) == 0)
#define STR_EQ_LIT(s, lit) (strcmp(s, lit) == 0)
void processCommand (char *cmd, NodeEntry *remNode) {
PlainTextMessagePayload replyPayload;