From 37f1b88ba0ccce1d2be45eab6593ffe8da4b8e65 Mon Sep 17 00:00:00 2001 From: Thomas Quinot Date: Sat, 3 May 2014 09:07:02 +0000 Subject: [PATCH] Minor comment fix: dbsz is the block size as set by bs/ibs/obs, not the size of the buffer. --- bin/dd/dd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dd/dd.h b/bin/dd/dd.h index dace84526f52..d2fa410c1fd1 100644 --- a/bin/dd/dd.h +++ b/bin/dd/dd.h @@ -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) */