summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-02-10 02:44:53 +0000
committerMike Frysinger <vapier@gentoo.org>2011-02-10 02:44:53 +0000
commit903cd79faa5d78c18ad6096a0dfa15c334f985f9 (patch)
tree87f0d0b957ab837404a244ff2723f0e92a1ec9d2 /net-misc/openssh/files
parentAlso add AES-CTR fix to 5.8_p1 presently under stabilization. alpha/hppa/ppc6... (diff)
downloadgentoo-2-903cd79faa5d78c18ad6096a0dfa15c334f985f9.tar.gz
gentoo-2-903cd79faa5d78c18ad6096a0dfa15c334f985f9.tar.bz2
gentoo-2-903cd79faa5d78c18ad6096a0dfa15c334f985f9.zip
Drop openssl build patch since it doesn't seem to be needed anymore, and apply simple build fix for selinux from upstream #354247 by MarisN.
(Portage version: 2.2.0_alpha20/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/openssh/files')
-rw-r--r--net-misc/openssh/files/openssh-5.8_p1-selinux.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/net-misc/openssh/files/openssh-5.8_p1-selinux.patch b/net-misc/openssh/files/openssh-5.8_p1-selinux.patch
new file mode 100644
index 000000000000..7be2879f9a65
--- /dev/null
+++ b/net-misc/openssh/files/openssh-5.8_p1-selinux.patch
@@ -0,0 +1,18 @@
+http://bugs.gentoo.org/354247
+
+[openbsd-compat/port-linux.c] Bug #1851: fix syntax error in
+ selinux code. Patch from Leonardo Chiquitto.
+
+/* $Id: openssh-5.8_p1-selinux.patch,v 1.1 2011/02/10 02:44:53 vapier Exp $ */
+
+--- a/openbsd-compat/port-linux.c
++++ b/openbsd-compat/port-linux.c
+@@ -213,7 +213,7 @@
+
+ if (!ssh_selinux_enabled())
+ return;
+- if (path == NULL)
++ if (path == NULL) {
+ setfscreatecon(NULL);
+ return;
+ }