From owner-svn-src-head@FreeBSD.ORG Sat May 3 09:07:02 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF408DE; Sat, 3 May 2014 09:07:02 +0000 (UTC) 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 CD43316ED; Sat, 3 May 2014 09:07:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s43972fh058520; Sat, 3 May 2014 09:07:02 GMT (envelope-from thomas@svn.freebsd.org) Received: (from thomas@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s43972cL058519; Sat, 3 May 2014 09:07:02 GMT (envelope-from thomas@svn.freebsd.org) Message-Id: <201405030907.s43972cL058519@svn.freebsd.org> From: Thomas Quinot Date: Sat, 3 May 2014 09:07:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r265258 - head/bin/dd X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 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: Sat, 03 May 2014 09:07:02 -0000 Author: thomas Date: Sat May 3 09:07:02 2014 New Revision: 265258 URL: http://svnweb.freebsd.org/changeset/base/265258 Log: Minor comment fix: dbsz is the block size as set by bs/ibs/obs, not the size of the buffer. Modified: head/bin/dd/dd.h Modified: head/bin/dd/dd.h ============================================================================== --- head/bin/dd/dd.h Sat May 3 09:06:11 2014 (r265257) +++ head/bin/dd/dd.h Sat May 3 09:07:02 2014 (r265258) @@ -41,7 +41,7 @@ typedef struct { /* XXX ssize_t? */ size_t dbcnt; /* current buffer byte count */ size_t dbrcnt; /* last read byte count */ - size_t dbsz; /* buffer size */ + size_t dbsz; /* block size */ #define ISCHR 0x01 /* character device (warn on short) */ #define ISPIPE 0x02 /* pipe-like (see position.c) */