fix: missing else statement when checking for client id
All checks were successful
gitea-sync/antd-tunnel-publishers/pipeline/head This commit looks good

This commit is contained in:
Dany LE 2023-09-25 17:19:43 +02:00 committed by GitHub
parent 20105e2ab1
commit 426ccca404
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -320,6 +320,7 @@ int main(int argc, char **argv)
{
M_LOG(MODULE_NAME, "Client %d is already subscript to this channel", request.header.client_id);
}
else
{
// store user name
bc_client = NULL;
@ -507,4 +508,4 @@ int main(int argc, char **argv)
}
(void)close(fd);
return 0;
}
}