example/openssl_client: Fix http string "printf" error without end character '\0'

This commit is contained in:
Dong Heng 2017-09-04 13:29:19 +08:00
parent 153275b743
commit d523a5181b

View file

@ -137,6 +137,7 @@ static void openssl_example_task(void *p)
if (ret <= 0) {
break;
}
recv_buf[ret] = '\0';
recv_bytes += ret;
ESP_LOGI(TAG, "%s", recv_buf);
} while (1);