From owner-svn-src-all@FreeBSD.ORG Fri Jun 12 20:50:28 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F217106564A; Fri, 12 Jun 2009 20:50:28 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6D9478FC13; Fri, 12 Jun 2009 20:50:28 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5CKoSuQ092568; Fri, 12 Jun 2009 20:50:28 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5CKoS14092567; Fri, 12 Jun 2009 20:50:28 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <200906122050.n5CKoS14092567@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Fri, 12 Jun 2009 20:50:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r194077 - head/sys/net X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 20:50:29 -0000 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