From owner-svn-src-all@FreeBSD.ORG Thu Mar 5 08:01:20 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 24FEE1065675; Thu, 5 Mar 2009 08:01:20 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EDB078FC08; Thu, 5 Mar 2009 08:01:19 +0000 (UTC) (envelope-from luigi@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 n2581JJR066775; Thu, 5 Mar 2009 08:01:19 GMT (envelope-from luigi@svn.freebsd.org) Received: (from luigi@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n2581J9u066774; Thu, 5 Mar 2009 08:01:19 GMT (envelope-from luigi@svn.freebsd.org) Message-Id: <200903050801.n2581J9u066774@svn.freebsd.org> From: Luigi Rizzo Date: Thu, 5 Mar 2009 08:01:19 +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: r189394 - head/sbin/ipfw 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: Thu, 05 Mar 2009 08:01:20 -0000 Author: luigi Date: Thu Mar 5 08:01:19 2009 New Revision: 189394 URL: http://svn.freebsd.org/changeset/base/189394 Log: mark a function static, as it is Modified: head/sbin/ipfw/altq.c Modified: head/sbin/ipfw/altq.c ============================================================================== --- head/sbin/ipfw/altq.c Thu Mar 5 07:42:47 2009 (r189393) +++ head/sbin/ipfw/altq.c Thu Mar 5 08:01:19 2009 (r189394) @@ -121,7 +121,7 @@ altq_name_to_qid(const char *name) return altq->qid; } -const char * +static const char * altq_qid_to_name(u_int32_t qid) { struct pf_altq *altq;