Skip to content
Snippets Groups Projects
Commit 7bc199c9 authored by rswindell's avatar rswindell
Browse files

Bugfix: first call to client_on() cannot be an "update".

parent 28469e22
Branches
Tags
No related merge requests found
......@@ -2719,7 +2719,7 @@ void http_session_thread(void* arg)
session.client.protocol="http";
session.client.user=session.username;
session.client.size=sizeof(session.client);
client_on(session.socket, &session.client, TRUE);
client_on(session.socket, &session.client, /* update existing client record? */FALSE);
if(session.socket!=INVALID_SOCKET && startup!=NULL && startup->socket_open!=NULL)
startup->socket_open(startup->cbdata,TRUE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment