Date: Fri, 12 Jun 2009 20:50:28 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r194077 - head/sys/net Message-ID: <200906122050.n5CKoS14092567@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906122050.n5CKoS14092567>