diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-18 09:15:40 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-18 09:15:40 +0700 |
commit | 2ae00a0e323c984d31c801d4af0869a2a4ca6f42 (patch) | |
tree | 608d0a85c4c2fa680016f56cad2e3210d552cbaf /libraries/libnids/libnids.patch | |
parent | b2bef49bc71b735f3011d6c81cb19b49d525893a (diff) |
libraries/libnids: Fix references.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libnids/libnids.patch')
-rw-r--r-- | libraries/libnids/libnids.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/libraries/libnids/libnids.patch b/libraries/libnids/libnids.patch new file mode 100644 index 000000000000..1554895c2794 --- /dev/null +++ b/libraries/libnids/libnids.patch @@ -0,0 +1,45 @@ +--- libnids-1.24/src/checksum.c.orig 2016-02-18 05:45:04.673171164 +0700 ++++ libnids-1.24/src/checksum.c 2016-02-18 05:49:19.297787169 +0700 +@@ -120,7 +120,7 @@ + By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by Arnt + Gulbrandsen. + */ +-inline u_short ip_fast_csum(u_char * iph, u_int ihl) ++u_short ip_fast_csum(u_char * iph, u_int ihl) + { + u_int sum; + if (dontchksum(((struct ip*)iph)->ip_src.s_addr)) +@@ -172,7 +172,7 @@ + computes the checksum of the TCP/UDP pseudo-header + returns a 16-bit checksum, already complemented + */ +-static inline u_short ++inline u_short + csum_tcpudp_magic(u_int saddr, u_int daddr, u_short len, + u_short proto, u_int sum) + { +@@ -191,13 +191,13 @@ + this routine is used for miscellaneous IP-like checksums, mainly in + icmp.c + */ +-inline u_short ++u_short + ip_compute_csum(u_char * buff, int len) + { + return (csum_fold(csum_partial(buff, len, 0))); + } + +-inline u_short ++u_short + my_tcp_check(struct tcphdr *th, int len, u_int saddr, u_int daddr) + { + if (dontchksum(saddr)) +@@ -205,7 +205,7 @@ + return csum_tcpudp_magic(saddr, daddr, len, IPPROTO_TCP, + csum_partial((u_char *)th, len, 0)); + } +-inline u_short ++u_short + my_udp_check(void *u, int len, u_int saddr, u_int daddr) + { + if (dontchksum(saddr)) |