public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error
@ 2005-07-27 20:49 Nick Sillik
  2005-07-27 21:24 ` David S. Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Nick Sillik @ 2005-07-27 20:49 UTC (permalink / raw)
  To: linux-kernel, Netfilter Core Team

[-- Attachment #1: Type: text/plain, Size: 190 bytes --]

Sorry for the resend and previously bad subject line.

This fixes a single -Wundef error in the file
net/ipv4/netfilter/ip_conntrack_core.c ,

Please Apply

Nick Sillik
n.sillik@temple.edu


[-- Attachment #2: ipconntrack_wundef.patch --]
[-- Type: text/plain, Size: 590 bytes --]

diff -urN a/net/ipv4/netfilter/ip_conntrack_core.c b/net/ipv4/netfilter/ip_conntrack_core.c
--- a/net/ipv4/netfilter/ip_conntrack_core.c	2005-07-27 16:40:16.000000000 -0400
+++ b/net/ipv4/netfilter/ip_conntrack_core.c	2005-07-27 16:41:00.000000000 -0400
@@ -723,7 +723,7 @@
 		/* Welcome, Mr. Bond.  We've been expecting you... */
 		__set_bit(IPS_EXPECTED_BIT, &conntrack->status);
 		conntrack->master = exp->master;
-#if CONFIG_IP_NF_CONNTRACK_MARK
+#ifdef CONFIG_IP_NF_CONNTRACK_MARK
 		conntrack->mark = exp->master->mark;
 #endif
 		nf_conntrack_get(&conntrack->master->ct_general);


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error
  2005-07-27 20:49 [PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error Nick Sillik
@ 2005-07-27 21:24 ` David S. Miller
  2005-07-27 21:38   ` Nick Sillik
  0 siblings, 1 reply; 5+ messages in thread
From: David S. Miller @ 2005-07-27 21:24 UTC (permalink / raw)
  To: n.sillik; +Cc: linux-kernel, coreteam

From: Nick Sillik <n.sillik@temple.edu>
Date: Wed, 27 Jul 2005 16:49:59 -0400

> Sorry for the resend and previously bad subject line.
> 
> This fixes a single -Wundef error in the file
> net/ipv4/netfilter/ip_conntrack_core.c ,

Please supply a proper Signed-off-by: line with your
patch.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error
  2005-07-27 21:24 ` David S. Miller
@ 2005-07-27 21:38   ` Nick Sillik
  2005-07-27 21:44     ` David S. Miller
  2005-07-27 21:45     ` David S. Miller
  0 siblings, 2 replies; 5+ messages in thread
From: Nick Sillik @ 2005-07-27 21:38 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, coreteam

[-- Attachment #1: Type: text/plain, Size: 647 bytes --]

Apologies

Signed-off-by: Nick Sillik <n.sillik@temple.edu>

David S. Miller wrote:
> From: Nick Sillik <n.sillik@temple.edu>
> Date: Wed, 27 Jul 2005 16:49:59 -0400
> 
> 
>>Sorry for the resend and previously bad subject line.
>>
>>This fixes a single -Wundef error in the file
>>net/ipv4/netfilter/ip_conntrack_core.c ,
> 
> 
> Please supply a proper Signed-off-by: line with your
> patch.
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/


[-- Attachment #2: ipconntrack_wundef.patch --]
[-- Type: text/plain, Size: 589 bytes --]

diff -urN a/net/ipv4/netfilter/ip_conntrack_core.c b/net/ipv4/netfilter/ip_conntrack_core.c
--- a/net/ipv4/netfilter/ip_conntrack_core.c	2005-07-27 16:40:16.000000000 -0400
+++ b/net/ipv4/netfilter/ip_conntrack_core.c	2005-07-27 16:41:00.000000000 -0400
@@ -723,7 +723,7 @@
 		/* Welcome, Mr. Bond.  We've been expecting you... */
 		__set_bit(IPS_EXPECTED_BIT, &conntrack->status);
 		conntrack->master = exp->master;
-#if CONFIG_IP_NF_CONNTRACK_MARK
+#ifdef CONFIG_IP_NF_CONNTRACK_MARK
 		conntrack->mark = exp->master->mark;
 #endif
 		nf_conntrack_get(&conntrack->master->ct_general);

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error
  2005-07-27 21:38   ` Nick Sillik
@ 2005-07-27 21:44     ` David S. Miller
  2005-07-27 21:45     ` David S. Miller
  1 sibling, 0 replies; 5+ messages in thread
From: David S. Miller @ 2005-07-27 21:44 UTC (permalink / raw)
  To: n.sillik; +Cc: linux-kernel, coreteam

From: Nick Sillik <n.sillik@temple.edu>
Date: Wed, 27 Jul 2005 17:38:31 -0400

> Apologies
> 
> Signed-off-by: Nick Sillik <n.sillik@temple.edu>

I need it "with" the patch.

Please resend the patch and the signed-off-by line together to me
under seperate cover in private email so we don't have to spam
linux-kernel as we try to get this right :)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error
  2005-07-27 21:38   ` Nick Sillik
  2005-07-27 21:44     ` David S. Miller
@ 2005-07-27 21:45     ` David S. Miller
  1 sibling, 0 replies; 5+ messages in thread
From: David S. Miller @ 2005-07-27 21:45 UTC (permalink / raw)
  To: n.sillik; +Cc: linux-kernel, coreteam


I'm a butt head, sorry, you did include the patch with
the signed off line, ignore my patheticism in that other
reply :-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-07-27 21:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-27 20:49 [PATCH 2.6.13-rc3-mm2]net/ipv4/netfilter/ip_conntrack_core.c fix -Wundef error Nick Sillik
2005-07-27 21:24 ` David S. Miller
2005-07-27 21:38   ` Nick Sillik
2005-07-27 21:44     ` David S. Miller
2005-07-27 21:45     ` David S. Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox