svn commit: r222809 - head/sys/netinet/libalias

Andrey V. Elsukov ae at FreeBSD.org
Tue Jun 7 06:57:22 UTC 2011


Author: ae
Date: Tue Jun  7 06:57:22 2011
New Revision: 222809
URL: http://svn.freebsd.org/changeset/base/222809

Log:
  Fix indentation.

Modified:
  head/sys/netinet/libalias/alias_sctp.h

Modified: head/sys/netinet/libalias/alias_sctp.h
==============================================================================
--- head/sys/netinet/libalias/alias_sctp.h	Tue Jun  7 06:48:42 2011	(r222808)
+++ head/sys/netinet/libalias/alias_sctp.h	Tue Jun  7 06:57:22 2011	(r222809)
@@ -135,13 +135,13 @@ struct sctp_nat_assoc {
 	struct in_addr a_addr;	/**< alias ip address */
 	int state;			/**< current state of NAT association */
 	int TableRegister;		/**< stores which look up tables association is registered in */
-	int	exp;			/**< timer expiration in seconds from uptime */
+	int exp;			/**< timer expiration in seconds from uptime */
 	int exp_loc;			/**< current location in timer_Q */
 	int num_Gaddr;		/**< number of global IP addresses in the list */
 	LIST_HEAD(sctpGlobalAddresshead,sctp_GlobalAddress) Gaddr; /**< List of global addresses */
-							    LIST_ENTRY (sctp_nat_assoc) list_L; /**< Linked list of pointers for Local table*/
-											LIST_ENTRY (sctp_nat_assoc) list_G; /**< Linked list of pointers for Global table */
-														    LIST_ENTRY (sctp_nat_assoc) timer_Q; /**< Linked list of pointers for timer Q */
+	LIST_ENTRY (sctp_nat_assoc) list_L; /**< Linked list of pointers for Local table*/
+	LIST_ENTRY (sctp_nat_assoc) list_G; /**< Linked list of pointers for Global table */
+	LIST_ENTRY (sctp_nat_assoc) timer_Q; /**< Linked list of pointers for timer Q */
 //Using libalias locking
 };
 


More information about the svn-src-all mailing list