From owner-svn-src-all@FreeBSD.ORG Mon Jun 22 17:04:25 2015 Return-Path: Delivered-To: svn-src-all@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0152D72F; Mon, 22 Jun 2015 17:04:24 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) 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 E4343FA7; Mon, 22 Jun 2015 17:04:24 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MH4OiI076715; Mon, 22 Jun 2015 17:04:24 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5MH4Oll076714; Mon, 22 Jun 2015 17:04:24 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201506221704.t5MH4Oll076714@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Mon, 22 Jun 2015 17:04:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284701 - head/sys/kern 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.20 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: Mon, 22 Jun 2015 17:04:25 -0000 Author: sbruno Date: Mon Jun 22 17:04:24 2015 New Revision: 284701 URL: https://svnweb.freebsd.org/changeset/base/284701 Log: Make imgact_binmisc_exec() static. Submitted by: kib Reviewed by: sson Modified: head/sys/kern/imgact_binmisc.c Modified: head/sys/kern/imgact_binmisc.c ============================================================================== --- head/sys/kern/imgact_binmisc.c Mon Jun 22 16:24:27 2015 (r284700) +++ head/sys/kern/imgact_binmisc.c Mon Jun 22 17:04:24 2015 (r284701) @@ -101,9 +101,6 @@ static int interp_list_entry_count = 0; static struct sx interp_list_sx; -int imgact_binmisc_exec(struct image_params *imgp); - - /* * Populate the entry with the information about the interpreter. */ @@ -576,7 +573,7 @@ imgact_binmisc_find_interpreter(const ch return (NULL); } -int +static int imgact_binmisc_exec(struct image_params *imgp) { const char *image_header = imgp->image_header;