From owner-svn-src-head@FreeBSD.ORG Thu Sep 23 17:47:46 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9972F1065693; Thu, 23 Sep 2010 17:47:46 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 891A58FC12; Thu, 23 Sep 2010 17:47:46 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o8NHlkdk076197; Thu, 23 Sep 2010 17:47:46 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o8NHlk3x076195; Thu, 23 Sep 2010 17:47:46 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201009231747.o8NHlk3x076195@svn.freebsd.org> From: Ed Maste Date: Thu, 23 Sep 2010 17:47:46 +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: r213080 - head/sys/rpc X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Sep 2010 17:47:46 -0000 Author: emaste Date: Thu Sep 23 17:47:46 2010 New Revision: 213080 URL: http://svn.freebsd.org/changeset/base/213080 Log: Remove unnecessary weak reference that was apparently copied from the version of this function in lib/libc/inet/inet_pton.c MFC after: 1 week Modified: head/sys/rpc/inet_pton.c Modified: head/sys/rpc/inet_pton.c ============================================================================== --- head/sys/rpc/inet_pton.c Thu Sep 23 17:37:57 2010 (r213079) +++ head/sys/rpc/inet_pton.c Thu Sep 23 17:47:46 2010 (r213080) @@ -218,11 +218,4 @@ inet_pton6(const char *src, u_char *dst) return (1); } -/* - * Weak aliases for applications that use certain private entry points, - * and fail to include . - */ -#undef inet_pton -__weak_reference(__inet_pton, inet_pton); - /*! \file */