[netfilter-cvslog] r3971 - trunk/patch-o-matic-ng/TCPLAG/linux/net/ipv4/netfilter

kaber at netfilter.org kaber at netfilter.org
Sat Jun 11 17:19:54 CEST 2005


Author: kaber at netfilter.org
Date: 2005-06-11 17:19:53 +0200 (Sat, 11 Jun 2005)
New Revision: 3971

Modified:
   trunk/patch-o-matic-ng/TCPLAG/linux/net/ipv4/netfilter/ipt_TCPLAG.c
Log:
Fix tv_usec assignment (Jan Engelhardt <jengelh at linux01.gwdg.de>)


Modified: trunk/patch-o-matic-ng/TCPLAG/linux/net/ipv4/netfilter/ipt_TCPLAG.c
===================================================================
--- trunk/patch-o-matic-ng/TCPLAG/linux/net/ipv4/netfilter/ipt_TCPLAG.c	2005-06-11 15:14:00 UTC (rev 3970)
+++ trunk/patch-o-matic-ng/TCPLAG/linux/net/ipv4/netfilter/ipt_TCPLAG.c	2005-06-11 15:19:53 UTC (rev 3971)
@@ -99,7 +99,7 @@
 	T->tv_usec /= c;
 	remainder = T->tv_sec % c; /* Only works properly with positive numbers */
 	remainder *= 1000000;
-	T->tv_usec == remainder;
+	T->tv_usec = remainder;
 	T->tv_sec /= c;
 }
 




More information about the netfilter-cvslog mailing list