Date: Sat, 3 May 2014 09:07:02 +0000 (UTC) From: Thomas Quinot <thomas@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r265258 - head/bin/dd Message-ID: <201405030907.s43972cL058519@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405030907.s43972cL058519>