]> source.dussan.org Git - tigervnc.git/commitdiff
Oops. Can't increment loop counter, because we don't know yet that we've received...
authorDRC <dcommander@users.sourceforge.net>
Thu, 10 Mar 2011 10:30:41 +0000 (10:30 +0000)
committerDRC <dcommander@users.sourceforge.net>
Thu, 10 Mar 2011 10:30:41 +0000 (10:30 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1_1@4353 3789f03b-4d11-0410-bbf8-ca57d06f2519

unix/vncserver

index 2d25c1b89d214521249ad11fac0d309c8caede15..2ceb6d8826839d2ed94d8f9a2e0840e0bf442210 100755 (executable)
@@ -167,11 +167,11 @@ $securityTypeArgSpecified = 0;
 $vncAuthEnabled = 0;
 $passwordArgSpecified = 0;
 
-for ($i=0; $i<@ARGV; ++$i) {
+for ($i = 0; $i < @ARGV; ++$i) {
     # -SecurityTypes can be followed by a space or "="
     my @splitargs = split('=', $ARGV[$i]);
     if (@splitargs <= 1 && $i < @ARGV - 1) {
-        push(@splitargs, $ARGV[++$i]);
+        push(@splitargs, $ARGV[$i + 1]);
     }
     if (lc(@splitargs[0]) eq "-securitytypes") {
         if (@splitargs > 1) {