]> git.meshlink.io Git - meshlink/blobdiff - src/meta.c
Strip newline from incoming SPTPS requests.
[meshlink] / src / meta.c
index dfb8392aabd425a445c32838b45ffbac6aff1653..8786d7f8b0894b69cad03f076c4c371eb04c9709 100644 (file)
@@ -109,6 +109,11 @@ bool receive_meta_sptps(void *handle, uint8_t type, const char *data, uint16_t l
                return true;
        }
 
+       /* Change newline to null byte, just like non-SPTPS requests */
+
+       if(data[length - 1] == '\n')
+               ((char *)data)[length - 1] = 0;
+
        /* Otherwise we are waiting for a request */
 
        return receive_request(c, data);