Module Name:    src
Committed By:   drochner
Date:           Mon May 16 10:00:32 UTC 2011

Modified Files:
        src/sys/netipsec: ipsec.c

Log Message:
cosmetical whitespace changes


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/sys/netipsec/ipsec.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netipsec/ipsec.c
diff -u src/sys/netipsec/ipsec.c:1.50 src/sys/netipsec/ipsec.c:1.51
--- src/sys/netipsec/ipsec.c:1.50	Fri Feb 18 19:06:45 2011
+++ src/sys/netipsec/ipsec.c	Mon May 16 10:00:32 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: ipsec.c,v 1.50 2011/02/18 19:06:45 drochner Exp $	*/
+/*	$NetBSD: ipsec.c,v 1.51 2011/05/16 10:00:32 drochner Exp $	*/
 /*	$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netipsec/ipsec.c,v 1.2.2.2 2003/07/01 01:38:13 sam Exp $	*/
 /*	$KAME: ipsec.c,v 1.103 2001/05/24 07:14:18 sakane Exp $	*/
 
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ipsec.c,v 1.50 2011/02/18 19:06:45 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ipsec.c,v 1.51 2011/05/16 10:00:32 drochner Exp $");
 
 /*
  * IPsec controller part.
@@ -429,7 +429,7 @@
  * Return a held reference to the default SP.
  */
 static struct secpolicy *
-key_allocsp_default(int af, const char* where, int tag)
+key_allocsp_default(int af, const char *where, int tag)
 {
 	struct secpolicy *sp;
 
@@ -2127,7 +2127,7 @@
 
 /* Return a printable string for the address. */
 const char *
-ipsec_address(const union sockaddr_union* sa)
+ipsec_address(const union sockaddr_union *sa)
 {
 	switch (sa->sa.sa_family) {
 #if INET
@@ -2196,8 +2196,8 @@
 
 #ifdef INET6
 struct secpolicy * 
-ipsec6_check_policy(struct mbuf * m, const struct socket * so,
-		    int flags, int * needipsecp, int * errorp)
+ipsec6_check_policy(struct mbuf *m, const struct socket *so,
+		    int flags, int *needipsecp, int *errorp)
 {
 	struct in6pcb *in6p = NULL;
 	struct secpolicy *sp = NULL;
@@ -2248,13 +2248,13 @@
 
 /* XXX this stuff doesn't belong here... */
 
-static	struct xformsw* xforms = NULL;
+static	struct xformsw *xforms = NULL;
 
 /*
  * Register a transform; typically at system startup.
  */
 void
-xform_register(struct xformsw* xsp)
+xform_register(struct xformsw *xsp)
 {
 	xsp->xf_next = xforms;
 	xforms = xsp;

Reply via email to