Trivial update to some comments

This commit is contained in:
Gregory Nutt 2016-04-16 17:48:15 -06:00
parent d13962ef74
commit f154d7ea1b
3 changed files with 7 additions and 2 deletions

View File

@ -69,7 +69,7 @@ static const char g_vncproto[] = RFB_PROTOCOL_VERSION_3p8;
* Name: vnc_negotiate
*
* Description:
* Perform the VNC initialize sequency after a client has sucessfully
* Perform the VNC initialization sequence after the client has sucessfully
* connected to the server. Negotiate security, framebuffer and color
* properties.
*

View File

@ -120,6 +120,11 @@ int vnc_server(int argc, FAR char *argv[])
{
gvdbg("New VNC connection\n");
/* Perform the VNC initialization sequence after the client has
* sucessfully connected to the server. Negotiate security,
* framebuffer and color properties.
*/
ret = vnc_negotiate(session);
if (ret < 0)
{

View File

@ -254,7 +254,7 @@ void vnc_release_session(FAR struct vnc_session_s *session);
* Name: vnc_negotiate
*
* Description:
* Perform the VNC initialize sequency after a client has sucessfully
* Perform the VNC initialization sequence after the client has sucessfully
* connected to the server. Negotiate security, framebuffer and color
* properties.
*