Kris Katterjohn wrote:
This fixes some whitespace issues in af_packet.c

Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]>

Thanks.

--- x/net/packet/af_packet.c    2006-01-18 15:16:05.000000000 -0600
+++ y/net/packet/af_packet.c    2006-01-20 18:53:18.000000000 -0600
@@ -365,7 +365,7 @@ static int packet_sendmsg_spkt(struct ki
         */
err = -EMSGSIZE;
-       if(len>dev->mtu+dev->hard_header_len)
+       if(len>dev->mtu+dev->hard_header_len)

While you are at it, why not make it human readable with something like this:

        if (len > dev->mtu + dev->hard_header_len)

--
Ben Greear <[EMAIL PROTECTED]>
Candela Technologies Inc  http://www.candelatech.com

-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to