From owner-svn-src-head@freebsd.org Mon May 30 18:02:10 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4307FB55831 for ; Mon, 30 May 2016 18:02:10 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from nm47-vm1.bullet.mail.bf1.yahoo.com (nm47-vm1.bullet.mail.bf1.yahoo.com [216.109.115.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9DE716A9 for ; Mon, 30 May 2016 18:02:09 +0000 (UTC) (envelope-from pfg@FreeBSD.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1464630929; bh=kecs6c/CJxNvXmLo4fV8+6PaN1PVPmPO1gM3H9SBPp4=; h=Subject:To:References:From:Date:In-Reply-To:From:Subject; b=rrZVaC62PwcW+vLfHfDqaMOC4U2w0wy+3AuAFcZ22Hz05XW8eUHioH6yWaVoDoMbmaXPEOsiwGIfZu8ZDWkvcukoOEewXHPWejixXzsb9C4zMKFKa4duvFQU4qgRbU6fLam96ocEhGv4WvSsQv8R4hgjpyrrNKrsoDFPObGxeoR4o9Bjn+y1wd/DgpDFY/G1IZjU3tStbr8lpabxKPH1NnAKO1FMv5lenJR8VDcBgLD5Zr3FXcbimSMUlwLBjqPaniZQ7e0hWEzVbT0mAwPpUzD8HwKDzohw1JcnIfz2uD4/3iFMJX2WsSD4xPVGQltp+f3QfeS3Q0jMnE51nebquQ== Received: from [66.196.81.173] by nm47.bullet.mail.bf1.yahoo.com with NNFMP; 30 May 2016 17:55:29 -0000 Received: from [68.142.230.65] by tm19.bullet.mail.bf1.yahoo.com with NNFMP; 30 May 2016 17:55:29 -0000 Received: from [127.0.0.1] by smtp222.mail.bf1.yahoo.com with NNFMP; 30 May 2016 17:55:29 -0000 X-Yahoo-Newman-Id: 190673.20614.bm@smtp222.mail.bf1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: gEqhnHIVM1nWua02VIBYkBqjAkMOnFXcQANbA46VQVSHRd8 KFDtZSlsrpf2RD39ZGAxyFCCkzzuWa8x3oHI_iIsYoNs10H_21wYHlBIDK.l 1ped7O4sNm3SvLVqsnKlaWy82F4zuhB5OiPgqfFTmgcXm888PmgwRWoxD.P_ nVOgH0XkUjb_0.Icn_6bOn5llKELkwEHq7.CfYkbjMoczf9Is07r4Hh4FZWo Mna0yWvGuUFISPPODOQnRDnjN4YP9iAhJB6n0PnP1FBJyqNt_9yfQrxa8dzl w8jr7nhA_eMcs10zRaO8gyerGoKfDU4Pt31CT.aMHp06KzrnkQGz93YkRHdf 3Pxx_wA9hdUIVAKMrb1Vgy6fM..yMKiaPI5Tnwc6QVVrwKZuObrTDsqfp5NE kEn98vV2k7xWlLCdAOG6weNxQH.yZ0WCEEf0LZG6a7Df6xNK0PcjAWBXeTtN J2yQUHKbj1jJ4MZm2qbVu_NNQQfflb9lBqDUTyYMweUgIkf15XX9H3ile4e_ e0VG9pXeQ8cztyO1QLfGtlDLMYoaRd0Ne X-Yahoo-SMTP: xcjD0guswBAZaPPIbxpWwLcp9Unf Subject: Re: svn commit: r300999 - in head: include lib/libc/db/man To: Ed Schouten , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201605301652.u4UGqNeu070540@repo.freebsd.org> From: Pedro Giffuni Message-ID: <574C7E89.3080102@FreeBSD.org> Date: Mon, 30 May 2016 12:55:21 -0500 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 MIME-Version: 1.0 In-Reply-To: <201605301652.u4UGqNeu070540@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.22 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: Mon, 30 May 2016 18:02:10 -0000 On 30/05/2016 11:52, Ed Schouten wrote: > Author: ed > Date: Mon May 30 16:52:23 2016 > New Revision: 300999 > URL: https://svnweb.freebsd.org/changeset/base/300999 > > Log: > Let dbm's datum::dptr use the right type. > > According to POSIX, it should use void *, not char *. Unfortunately, the > dsize field also has the wrong type. It should be size_t. I'm not going > to change that, as that will break the ABI. IMHO, just before a new release is the perfect time to break the ABI, and POSIX is a good reason to do it. Pedro.