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 8514035..b962738 100755
--- a/unix/vncserver
+++ b/unix/vncserver
@@ -373,14 +373,6 @@
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";