From: Adam Tkac Date: Thu, 14 Mar 2013 13:41:14 +0000 (+0000) Subject: Remove bogus -geometry width/height adjustment from vncserver script X-Git-Tag: v1.2.90~24 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ce6feaa3ca460878fd8672f0724eac4b52eaa026;p=tigervnc.git Remove bogus -geometry width/height adjustment from vncserver script git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5061 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/unix/vncserver b/unix/vncserver index 85140350..b9627389 100755 --- a/unix/vncserver +++ b/unix/vncserver @@ -373,14 +373,6 @@ sub CheckGeometryAndDepth die "$prog: geometry $geometry is invalid\n"; } - while (($width % 4)!=0) { - $width = $width + 1; - } - - while (($height % 2)!=0) { - $height = $height + 1; - } - $geometry = "${width}x$height"; } else { die "$prog: geometry $geometry is invalid\n";