From owner-svn-src-all@FreeBSD.ORG Sat Apr 11 01:07:00 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E3F827C; Sat, 11 Apr 2015 01:07:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6971AC9; Sat, 11 Apr 2015 01:07:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3B170qC063619; Sat, 11 Apr 2015 01:07:00 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3B170s1063618; Sat, 11 Apr 2015 01:07:00 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201504110107.t3B170s1063618@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sat, 11 Apr 2015 01:07:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r281388 - head/sys/netinet X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sat, 11 Apr 2015 01:07:00 -0000 Author: delphij Date: Sat Apr 11 01:06:59 2015 New Revision: 281388 URL: https://svnweb.freebsd.org/changeset/base/281388 Log: Attempt to fix build after 281351 by defining full prototype for the functions that were moved to ip_reass.c. Modified: head/sys/netinet/ip_input.c Modified: head/sys/netinet/ip_input.c ============================================================================== --- head/sys/netinet/ip_input.c Sat Apr 11 00:45:03 2015 (r281387) +++ head/sys/netinet/ip_input.c Sat Apr 11 01:06:59 2015 (r281388) @@ -90,11 +90,11 @@ CTASSERT(sizeof(struct ip) == 20); #endif /* IP reassembly functions are defined in ip_reass.c. */ -extern void ipreass_init(); -extern void ipreass_drain(); -extern void ipreass_slowtimo(); +extern void ipreass_init(void); +extern void ipreass_drain(void); +extern void ipreass_slowtimo(void); #ifdef VIMAGE -extern void ipreass_destroy(); +extern void ipreass_destroy(void); #endif struct rwlock in_ifaddr_lock;