1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2026-01-03 17:13:16 +00:00

1. Updated global-tunnel properties

2. Updated error message to be more descriptive
This commit is contained in:
Bryan Roe
2022-06-14 15:15:30 -07:00
parent 3c4577846a
commit de8322321c
2 changed files with 4 additions and 4 deletions

View File

@@ -3816,8 +3816,8 @@ void MeshServer_ConnectEx(MeshAgentHostContainer *agent)
}
else
{
char *foo = duk_safe_to_string(agent->meshCoreCtx, -1);
printf("%s\n", foo);
const char *foo = duk_safe_to_string(agent->meshCoreCtx, -1);
printf("AutoProxy Error: %s\n", foo);
}
duk_pop(agent->meshCoreCtx); // ...
}