All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <1296229611.5511.15.camel@sifl>

diff --git a/a/1.txt b/N1/1.txt
index 95dabb2..903ec95 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -14,7 +14,7 @@ On Fri, 2011-01-28 at 15:17 +0100, Julia Lawall wrote:
 > expression data;
 > @@
 > 
-> if (data = NULL) { ...
+> if (data == NULL) { ...
 > * genlmsg_cancel(..., data);
 >   ...
 >   return ...;
@@ -38,7 +38,7 @@ Acked-by: Paul Moore <paul.moore@hp.com>
 > @@ -635,7 +635,7 @@ static int netlbl_cipsov4_listall_cb(struct cipso_v4_doi *doi_def, void *arg)
 >  			   cb_arg->seq, &netlbl_cipsov4_gnl_family,
 >  			   NLM_F_MULTI, NLBL_CIPSOV4_C_LISTALL);
->  	if (data = NULL)
+>  	if (data == NULL)
 > -		goto listall_cb_failure;
 > +		return ret_val;
 >  
@@ -51,7 +51,7 @@ Acked-by: Paul Moore <paul.moore@hp.com>
 > @@ -452,7 +452,7 @@ static int netlbl_mgmt_listall_cb(struct netlbl_dom_map *entry, void *arg)
 >  			   cb_arg->seq, &netlbl_mgmt_gnl_family,
 >  			   NLM_F_MULTI, NLBL_MGMT_C_LISTALL);
->  	if (data = NULL)
+>  	if (data == NULL)
 > -		goto listall_cb_failure;
 > +		return ret_val;
 >  
@@ -60,7 +60,7 @@ Acked-by: Paul Moore <paul.moore@hp.com>
 > @@ -617,7 +617,7 @@ static int netlbl_mgmt_protocols_cb(struct sk_buff *skb,
 >  			   &netlbl_mgmt_gnl_family, NLM_F_MULTI,
 >  			   NLBL_MGMT_C_PROTOCOLS);
->  	if (data = NULL)
+>  	if (data == NULL)
 > -		goto protocols_cb_failure;
 > +		return ret_val;
 >  
@@ -73,7 +73,7 @@ Acked-by: Paul Moore <paul.moore@hp.com>
 > @@ -1141,7 +1141,7 @@ static int netlbl_unlabel_staticlist_gen(u32 cmd,
 >  			   cb_arg->seq, &netlbl_unlabel_gnl_family,
 >  			   NLM_F_MULTI, cmd);
->  	if (data = NULL)
+>  	if (data == NULL)
 > -		goto list_cb_failure;
 > +		return ret_val;
 >  
diff --git a/a/content_digest b/N1/content_digest
index d72c4fc..290423b 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,7 +1,7 @@
  "ref\01296224232-8115-2-git-send-email-julia@diku.dk\0"
  "From\0Paul Moore <paul.moore@hp.com>\0"
  "Subject\0Re: [PATCH 2/2] net/netlabel: Avoid call to genlmsg_cancel\0"
- "Date\0Fri, 28 Jan 2011 15:46:51 +0000\0"
+ "Date\0Fri, 28 Jan 2011 10:46:51 -0500\0"
  "To\0Julia Lawall <julia@diku.dk>\0"
  "Cc\0kernel-janitors@vger.kernel.org"
   David S. Miller <davem@davemloft.net>
@@ -25,7 +25,7 @@
  "> expression data;\n"
  "> @@\n"
  "> \n"
- "> if (data = NULL) { ...\n"
+ "> if (data == NULL) { ...\n"
  "> * genlmsg_cancel(..., data);\n"
  ">   ...\n"
  ">   return ...;\n"
@@ -49,7 +49,7 @@
  "> @@ -635,7 +635,7 @@ static int netlbl_cipsov4_listall_cb(struct cipso_v4_doi *doi_def, void *arg)\n"
  ">  \t\t\t   cb_arg->seq, &netlbl_cipsov4_gnl_family,\n"
  ">  \t\t\t   NLM_F_MULTI, NLBL_CIPSOV4_C_LISTALL);\n"
- ">  \tif (data = NULL)\n"
+ ">  \tif (data == NULL)\n"
  "> -\t\tgoto listall_cb_failure;\n"
  "> +\t\treturn ret_val;\n"
  ">  \n"
@@ -62,7 +62,7 @@
  "> @@ -452,7 +452,7 @@ static int netlbl_mgmt_listall_cb(struct netlbl_dom_map *entry, void *arg)\n"
  ">  \t\t\t   cb_arg->seq, &netlbl_mgmt_gnl_family,\n"
  ">  \t\t\t   NLM_F_MULTI, NLBL_MGMT_C_LISTALL);\n"
- ">  \tif (data = NULL)\n"
+ ">  \tif (data == NULL)\n"
  "> -\t\tgoto listall_cb_failure;\n"
  "> +\t\treturn ret_val;\n"
  ">  \n"
@@ -71,7 +71,7 @@
  "> @@ -617,7 +617,7 @@ static int netlbl_mgmt_protocols_cb(struct sk_buff *skb,\n"
  ">  \t\t\t   &netlbl_mgmt_gnl_family, NLM_F_MULTI,\n"
  ">  \t\t\t   NLBL_MGMT_C_PROTOCOLS);\n"
- ">  \tif (data = NULL)\n"
+ ">  \tif (data == NULL)\n"
  "> -\t\tgoto protocols_cb_failure;\n"
  "> +\t\treturn ret_val;\n"
  ">  \n"
@@ -84,7 +84,7 @@
  "> @@ -1141,7 +1141,7 @@ static int netlbl_unlabel_staticlist_gen(u32 cmd,\n"
  ">  \t\t\t   cb_arg->seq, &netlbl_unlabel_gnl_family,\n"
  ">  \t\t\t   NLM_F_MULTI, cmd);\n"
- ">  \tif (data = NULL)\n"
+ ">  \tif (data == NULL)\n"
  "> -\t\tgoto list_cb_failure;\n"
  "> +\t\treturn ret_val;\n"
  ">  \n"
@@ -96,4 +96,4 @@
  "paul moore\n"
  linux @ hp
 
-caf99c01e9b22d70e375539fe5ff1e3d4d20d522f233a78a600d3ac50702e3d4
+f97d5944772fee6c67f0b57f4666b3fcb7519bf8e0cbb2b24a6356f12a8fa2a4

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.