Browse Source

Fix send() for JSON strings

Kano 14 years ago
parent
commit
0eb5d5ecae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      api-example.c

+ 1 - 1
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;