From 192f7d89fb72516aefeb38f53ca51381b5c7a3d5 Mon Sep 17 00:00:00 2001 From: millert <> Date: Sun, 30 Apr 2000 18:44:44 +0000 Subject: [PATCH] Add OPENDEV_BLCK --- src/lib/libutil/util.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/libutil/util.h b/src/lib/libutil/util.h index dba5e6f0..a1eee32b 100644 --- a/src/lib/libutil/util.h +++ b/src/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));