svn commit: r194077 - head/sys/net

Bjoern A. Zeeb bz at FreeBSD.org
Fri Jun 12 20:50:29 UTC 2009


Author: bz
Date: Fri Jun 12 20:50:28 2009
New Revision: 194077
URL: http://svn.freebsd.org/changeset/base/194077

Log:
  Garbage collect an extern for a non-existent variable.
  While here let the comment end in a '.' and mark the #endif of _KERNEL.
  
  Reviewed by:	rwatson (as part of a larger patch)

Modified:
  head/sys/net/flowtable.h

Modified: head/sys/net/flowtable.h
==============================================================================
--- head/sys/net/flowtable.h	Fri Jun 12 20:46:36 2009	(r194076)
+++ head/sys/net/flowtable.h	Fri Jun 12 20:50:28 2009	(r194077)
@@ -39,18 +39,16 @@ $FreeBSD$
 
 struct flowtable;
 extern struct flowtable *ip_ft;
-extern struct flowtable *ip_forward_ft;
 
 struct flowtable *flowtable_alloc(int nentry, int flags);
 
 /*
  * Given a flow table, look up the L3 and L2 information and
- * return it in the route
+ * return it in the route.
  *
  */
 int flowtable_lookup(struct flowtable *ft, struct mbuf *m,
     struct route *ro);
 
-#endif
-
+#endif /* _KERNEL */
 #endif


More information about the svn-src-head mailing list