Minor comment fix: dbsz is the block size as set by bs/ibs/obs,

not the size of the buffer.
This commit is contained in:
Thomas Quinot 2014-05-03 09:07:02 +00:00
parent 66d5f71966
commit 37f1b88ba0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=265258

View File

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