diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-10-26 15:04:12 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-10-26 15:04:12 +0000 |
commit | b0050a9bb1e76b18c8a33b265f68d7e80163bf02 (patch) | |
tree | f78d9c8e540ef2578516a40011170521b4c2c912 /testing | |
parent | 002aa4f79827377f7e7977df7af8a0b95abee3da (diff) | |
download | aports-b0050a9bb1e76b18c8a33b265f68d7e80163bf02.tar.bz2 aports-b0050a9bb1e76b18c8a33b265f68d7e80163bf02.tar.xz |
testing/iscs-scst-grsec: build fix for 2.6.35 kernel
Diffstat (limited to 'testing')
-rw-r--r-- | testing/iscsi-scst-grsec/2.6.35.patch | 11 | ||||
-rw-r--r-- | testing/iscsi-scst-grsec/APKBUILD | 4 |
2 files changed, 14 insertions, 1 deletions
diff --git a/testing/iscsi-scst-grsec/2.6.35.patch b/testing/iscsi-scst-grsec/2.6.35.patch new file mode 100644 index 0000000000..54fde38221 --- /dev/null +++ b/testing/iscsi-scst-grsec/2.6.35.patch @@ -0,0 +1,11 @@ +--- ./kernel/conn.c.orig ++++ ./kernel/conn.c +@@ -86,7 +86,7 @@ + switch (sk->sk_family) { + case AF_INET: + snprintf(buf, sizeof(buf), +- "%u.%u.%u.%u", NIPQUAD(inet_sk(sk)->daddr)); ++ "%u.%u.%u.%u", NIPQUAD(inet_sk(sk)->inet_daddr)); + break; + case AF_INET6: + #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,29) diff --git a/testing/iscsi-scst-grsec/APKBUILD b/testing/iscsi-scst-grsec/APKBUILD index c8c95c158e..0320a5caaa 100644 --- a/testing/iscsi-scst-grsec/APKBUILD +++ b/testing/iscsi-scst-grsec/APKBUILD @@ -26,6 +26,7 @@ makedepends="linux-${_flavor}-dev=${_kernelver} scst-grsec-dev" subpackages= source="http://downloads.sourceforge.net/scst/$_realname-$_realver.tar.gz config.c.patch + 2.6.35.patch " _ksrc=/usr/src/linux-headers-${_abi_release} @@ -57,4 +58,5 @@ package() { } md5sums="56109c01e3d4421a36d6f47efa1fb0d5 iscsi-scst-1.0.1.1.tar.gz -48e21e3466fd819418f29e3b2487f052 config.c.patch" +48e21e3466fd819418f29e3b2487f052 config.c.patch +d2490c86d9138226ec674997817a163b 2.6.35.patch" |