aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/linux
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2009-09-04 15:02:11 +0200
committerMartin Willi <martin@strongswan.org>2009-09-04 15:02:11 +0200
commit7b3814f75da7e760347742fe5af05bdb3a1b1f1c (patch)
treec9d6133a799de64859b0a411606785ce32c0e0b7 /src/include/linux
parentb9b8a98f472aed6c60dd992ad97776eaa188ea9e (diff)
downloadstrongswan-7b3814f75da7e760347742fe5af05bdb3a1b1f1c.tar.bz2
strongswan-7b3814f75da7e760347742fe5af05bdb3a1b1f1c.tar.xz
remove spaces before tabs at the beginning of lines (^( )+\t)
Diffstat (limited to 'src/include/linux')
-rw-r--r--src/include/linux/netlink.h2
-rw-r--r--src/include/linux/rtnetlink.h4
-rw-r--r--src/include/linux/udp.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/include/linux/netlink.h b/src/include/linux/netlink.h
index 811a3c42c..1aeee628b 100644
--- a/src/include/linux/netlink.h
+++ b/src/include/linux/netlink.h
@@ -29,7 +29,7 @@ struct sockaddr_nl
sa_family_t nl_family; /* AF_NETLINK */
unsigned short nl_pad; /* zero */
__u32 nl_pid; /* process pid */
- __u32 nl_groups; /* multicast groups mask */
+ __u32 nl_groups; /* multicast groups mask */
};
struct nlmsghdr
diff --git a/src/include/linux/rtnetlink.h b/src/include/linux/rtnetlink.h
index 93201a4fb..131822c0f 100644
--- a/src/include/linux/rtnetlink.h
+++ b/src/include/linux/rtnetlink.h
@@ -941,7 +941,7 @@ extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const voi
#define RTA_PUT(skb, attrtype, attrlen, data) \
({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) \
goto rtattr_failure; \
- __rta_fill(skb, attrtype, attrlen, data); })
+ __rta_fill(skb, attrtype, attrlen, data); })
#define RTA_APPEND(skb, attrlen, data) \
({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) \
@@ -1038,7 +1038,7 @@ __rta_reserve(struct sk_buff *skb, int attrtype, int attrlen)
#define __RTA_PUT(skb, attrtype, attrlen) \
({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) \
goto rtattr_failure; \
- __rta_reserve(skb, attrtype, attrlen); })
+ __rta_reserve(skb, attrtype, attrlen); })
extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change);
diff --git a/src/include/linux/udp.h b/src/include/linux/udp.h
index 2ee121bd0..c213d2a51 100644
--- a/src/include/linux/udp.h
+++ b/src/include/linux/udp.h
@@ -45,7 +45,7 @@ struct udp_sock {
struct inet_sock inet;
int pending; /* Any pending frames ? */
unsigned int corkflag; /* Cork is required */
- __u16 encap_type; /* Is this an Encapsulation socket? */
+ __u16 encap_type; /* Is this an Encapsulation socket? */
/*
* Following member retains the infomation to create a UDP header
* when the socket is uncorked.