svn commit: r265258 - head/bin/dd

Thomas Quinot thomas at FreeBSD.org
Sat May 3 09:07:02 UTC 2014


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) */


More information about the svn-src-head mailing list