1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

fixed regular_square. Some scan-build tweaks. Made os_port.h "private".

git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@181 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
cameronrich
2010-12-29 11:49:30 +00:00
parent 7e570e3943
commit 0d2e75b9c7
16 changed files with 48 additions and 65 deletions

View File

@ -310,7 +310,6 @@ static void do_server(int argc, char *argv[])
if ((client_fd = accept(server_fd,
(struct sockaddr *)&client_addr, &client_len)) < 0)
{
res = 1;
break;
}
@ -683,7 +682,6 @@ static void do_client(int argc, char *argv[])
for (;;)
{
uint8_t buf[1024];
res = SSL_OK;
/* allow parallel reading of server and standard input */
FD_SET(client_fd, &read_set);