From 8417618289bd95663789bb67d841800f166c57a0 Mon Sep 17 00:00:00 2001 From: runge Date: Sat, 3 Jun 2006 04:01:29 +0000 Subject: [PATCH] move all types into handler loop. --- libvncserver/auth.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/libvncserver/auth.c b/libvncserver/auth.c index 2a8fcb4..a1f75a0 100755 --- a/libvncserver/auth.c +++ b/libvncserver/auth.c @@ -277,19 +277,18 @@ rfbProcessClientSecurityType(rfbClientPtr cl) return; } - if(chosenType == rfbSecTypeNone) { - cl->state = RFB_INITIALISATION; - return; - } - - /* Make sure it was present in the list sent by the server. */ - for (handler = securityHandlers; handler; - handler = handler->next) + for (handler = securityHandlers; handler; handler = handler->next) { if (chosenType == handler->type) { - handler->handler(cl); - return; + if (chosenType == rfbSecTypeNone) { + cl->state = RFB_INITIALISATION; + return; + } else { + handler->handler(cl); + return; + } } + } rfbLog("rfbProcessClientSecurityType: wrong security type requested\n"); rfbCloseClient(cl);