Missed an indentation fix

pull/55/head
abrahamsonn 2017-06-02 09:36:34 -06:00 committed by GitHub
parent 534b89fc1a
commit 56f3f1dca0
1 changed files with 4 additions and 4 deletions

View File

@ -188,10 +188,10 @@ int main (int argc, char** argv)
} }
while ( (n = wolfSSL_read(ssl, recvLine, sizeof(recvLine)-1)) <= 0) { while ( (n = wolfSSL_read(ssl, recvLine, sizeof(recvLine)-1)) <= 0) {
int readErr = wolfSSL_get_error(ssl, 0); int readErr = wolfSSL_get_error(ssl, 0);
if(readErr != SSL_ERROR_WANT_READ) { if(readErr != SSL_ERROR_WANT_READ) {
printf("wolfSSL_read failed"); printf("wolfSSL_read failed");
} }
} }
recvLine[n] = '\0'; recvLine[n] = '\0';