summaryrefslogtreecommitdiffstats
path: root/contrib/packages/deb/ubuntu-trusty
diff options
context:
space:
mode:
authorBrian P. Hinz <bphinz@users.sf.net>2016-01-03 22:04:02 -0500
committerBrian P. Hinz <bphinz@users.sf.net>2016-01-03 22:06:53 -0500
commit0a5489cda8fdb63e863e5cc64bbb9854ade5cd13 (patch)
tree367ae512697d3c7c827b92649034b6f5299a11f6 /contrib/packages/deb/ubuntu-trusty
parent1efc06e025bd575aa9dac285519e8984378fc834 (diff)
downloadtigervnc-0a5489cda8fdb63e863e5cc64bbb9854ade5cd13.tar.gz
tigervnc-0a5489cda8fdb63e863e5cc64bbb9854ade5cd13.zip
Remove uncessary Xauth cookie patch from deb & rpm packages
Obsoleted by 7461517
Diffstat (limited to 'contrib/packages/deb/ubuntu-trusty')
-rw-r--r--contrib/packages/deb/ubuntu-trusty/debian/patches/504_tigervnc-cookie.patch36
-rw-r--r--contrib/packages/deb/ubuntu-trusty/debian/patches/series1
2 files changed, 0 insertions, 37 deletions
diff --git a/contrib/packages/deb/ubuntu-trusty/debian/patches/504_tigervnc-cookie.patch b/contrib/packages/deb/ubuntu-trusty/debian/patches/504_tigervnc-cookie.patch
deleted file mode 100644
index 1fc93c86..00000000
--- a/contrib/packages/deb/ubuntu-trusty/debian/patches/504_tigervnc-cookie.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/unix/vncserver 2009-11-12 11:39:54.000000000 +0100
-+++ b/unix/vncserver 2009-12-21 16:15:01.907799091 +0100
-@@ -189,27 +189,12 @@ $vncPort = 5900 + $displayNumber;
- $desktopLog = "$vncUserDir/$host:$displayNumber.log";
- unlink($desktopLog);
-
--# Make an X server cookie - use /dev/urandom on systems that have it,
--# otherwise use perl's random number generator, seeded with the sum
--# of the current time, our PID and part of the encrypted form of the password.
--
--my $cookie = "";
--if (open(URANDOM, '<', '/dev/urandom')) {
-- my $randata;
-- if (sysread(URANDOM, $randata, 16) == 16) {
-- $cookie = unpack 'h*', $randata;
-- }
-- close(URANDOM);
--}
--if ($cookie eq "") {
-- srand(time+$$+unpack("L",`cat $vncUserDir/passwd`));
-- for (1..16) {
-- $cookie .= sprintf("%02x", int(rand(256)) % 256);
-- }
--}
--
--system("xauth -f $xauthorityFile add $host:$displayNumber . $cookie");
--system("xauth -f $xauthorityFile add $host/unix:$displayNumber . $cookie");
-+# Make an X server cookie - use mcookie
-+$cookie = `/usr/bin/mcookie`;
-+open (XAUTH, "|xauth -f $xauthorityFile source -");
-+print XAUTH "add $host:$displayNumber . $cookie\n";
-+print XAUTH "add $host/unix:$displayNumber . $cookie\n";
-+close XAUTH;
-
- if ($opt{'-name'}) {
- $desktopName = $opt{'-name'};
diff --git a/contrib/packages/deb/ubuntu-trusty/debian/patches/series b/contrib/packages/deb/ubuntu-trusty/debian/patches/series
index 3a4ceba2..b57b12ad 100644
--- a/contrib/packages/deb/ubuntu-trusty/debian/patches/series
+++ b/contrib/packages/deb/ubuntu-trusty/debian/patches/series
@@ -5,5 +5,4 @@
100_rethrow_signals.patch
# Upstream patches
-504_tigervnc-cookie.patch
516_tigervnc-xorg-manpages.patch