diff options
author | 2000-04-30 18:44:44 +0000 | |
---|---|---|
committer | 2000-04-30 18:44:44 +0000 | |
commit | 41c16d58abd16f4610d4b73cbd9a5e1539bd4ce2 (patch) | |
tree | c0b079cf6925a09ece1764fd5528027065c674d4 | |
parent | Mention you should not use soft updates on sun4 or sun4c due to the (diff) | |
download | wireguard-openbsd-41c16d58abd16f4610d4b73cbd9a5e1539bd4ce2.tar.xz wireguard-openbsd-41c16d58abd16f4610d4b73cbd9a5e1539bd4ce2.zip |
Add OPENDEV_BLCK
-rw-r--r-- | lib/libutil/util.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libutil/util.h b/lib/libutil/util.h index dba5e6f0509..a1eee32b110 100644 --- a/lib/libutil/util.h +++ b/lib/libutil/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.9 1999/07/20 16:38:57 jakob Exp $ */ +/* $OpenBSD: util.h,v 1.10 2000/04/30 18:44:44 millert Exp $ */ /* $NetBSD: util.h,v 1.2 1996/05/16 07:00:22 thorpej Exp $ */ /*- @@ -59,7 +59,8 @@ * opendev() specific operation flags. */ #define OPENDEV_PART 0x01 /* Try to open the raw partition. */ -#define OPENDEV_DRCT 0x02 /* Try to open the device directly. */ +#define OPENDEV_DRCT 0x02 /* Obsolete (now default behavior). */ +#define OPENDEV_BLCK 0x04 /* Open block, not character device. */ __BEGIN_DECLS char *fparseln __P((FILE *, size_t *, size_t *, const char[3], int)); |