From owner-svn-src-stable-7@FreeBSD.ORG Tue Feb 10 21:09:54 2009 Return-Path: Delivered-To: svn-src-stable-7@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 995EC1065670; Tue, 10 Feb 2009 21:09:54 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 853AF8FC14; Tue, 10 Feb 2009 21:09:54 +0000 (UTC) (envelope-from emax@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 n1AL9sof004416; Tue, 10 Feb 2009 21:09:54 GMT (envelope-from emax@svn.freebsd.org) Received: (from emax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1AL9s3j004415; Tue, 10 Feb 2009 21:09:54 GMT (envelope-from emax@svn.freebsd.org) Message-Id: <200902102109.n1AL9s3j004415@svn.freebsd.org> From: Maksim Yevmenkin Date: Tue, 10 Feb 2009 21:09:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r188454 - in stable/7/lib/libc: . string uuid X-BeenThere: svn-src-stable-7@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 7-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2009 21:09:55 -0000 Author: emax Date: Tue Feb 10 21:09:54 2009 New Revision: 188454 URL: http://svn.freebsd.org/changeset/base/188454 Log: MFC r183058 Add uuid_enc,dec_le,be() functions to Symbol.map Pointy hat goes to me. MFC r183192 Move uuid_enc_le, uuid_dec_le, uuid_enc_be and uuid_dec_be symbols into FBSD_1.1 section where they should be (as Pointed out by: kib, deischen) Modified: stable/7/lib/libc/ (props changed) stable/7/lib/libc/string/ffsll.c (props changed) stable/7/lib/libc/string/flsll.c (props changed) stable/7/lib/libc/uuid/Symbol.map Modified: stable/7/lib/libc/uuid/Symbol.map ============================================================================== --- stable/7/lib/libc/uuid/Symbol.map Tue Feb 10 20:29:57 2009 (r188453) +++ stable/7/lib/libc/uuid/Symbol.map Tue Feb 10 21:09:54 2009 (r188454) @@ -12,3 +12,10 @@ FBSD_1.0 { uuid_create; uuid_compare; }; + +FBSD_1.1 { + uuid_enc_le; + uuid_dec_le; + uuid_enc_be; + uuid_dec_be; +};