Skip to content

Commit fb3104e

Browse files
authored
Merge pull request #269 from AlexLanzano/posix-demo-fix
Do not return directly after call to wh_DemoClient_All in posix client demo
2 parents 0c657a1 + cbe8058 commit fb3104e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/posix/wh_posix_client/wh_posix_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ static int wh_ClientTask(void* cf, const char* type, int test)
9494
WOLFHSM_CFG_PRINTF("Client connecting to server...\n");
9595
if (ret == 0 && test) {
9696
WOLFHSM_CFG_PRINTF("Running client demos...\n");
97-
return wh_DemoClient_All(client);
97+
ret = wh_DemoClient_All(client);
9898
}
9999

100100
if (ret != 0) {

0 commit comments

Comments
 (0)