diff options
author | green <green@FreeBSD.org> | 1999-09-12 18:56:12 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 1999-09-12 18:56:12 +0000 |
commit | e40ba941364b555156f97e792df57b178b8d291c (patch) | |
tree | 841889466b6e74e92a217d795e01cf9d1cb79530 /bin/dd/dd.h | |
parent | 347920f6fbdf6bb321a5895694e2ed2ae9b260ee (diff) | |
download | FreeBSD-src-e40ba941364b555156f97e792df57b178b8d291c.zip FreeBSD-src-e40ba941364b555156f97e792df57b178b8d291c.tar.gz |
ISDISK -> ISSEEK
Allow a device type of D_DISK or D_MEM to be ISSEEK.
Diffstat (limited to 'bin/dd/dd.h')
-rw-r--r-- | bin/dd/dd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dd/dd.h b/bin/dd/dd.h index f671baa..4e2419b 100644 --- a/bin/dd/dd.h +++ b/bin/dd/dd.h @@ -49,7 +49,7 @@ typedef struct { #define ISCHR 0x01 /* character device (warn on short) */ #define ISPIPE 0x02 /* pipe (not truncatable) */ #define ISTAPE 0x04 /* tape (not seekable) */ -#define ISDISK 0x08 /* disk (valid to seek on) */ +#define ISSEEK 0x08 /* valid to seek on */ #define NOREAD 0x10 /* not readable */ u_int flags; |