Fix send() for JSON strings
diff --git a/api-example.c b/api-example.c
index 4c76135..0a327e8 100755
--- a/api-example.c
+++ b/api-example.c
@@ -214,7 +214,7 @@ int callapi(char *command, char *host, short int port)
return 1;
}
- n = send(sock, command, strlen(command)+1, 0);
+ n = send(sock, command, strlen(command), 0);
if (SOCKETFAIL(n)) {
printf("Send failed: %s\n", SOCKERRMSG);
ret = 1;