diff options
Diffstat (limited to 'usr.bin/doas/doas.h')
-rw-r--r-- | usr.bin/doas/doas.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/doas/doas.h b/usr.bin/doas/doas.h index c97986e..58b2215 100644 --- a/usr.bin/doas/doas.h +++ b/usr.bin/doas/doas.h @@ -1,4 +1,4 @@ -/* $OpenBSD: doas.h,v 1.15 2019/06/17 19:51:23 tedu Exp $ */ +/* $OpenBSD: doas.h,v 1.17 2021/01/27 17:02:50 millert Exp $ */ /* * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org> * @@ -26,7 +26,7 @@ struct rule { }; extern struct rule **rules; -extern int nrules; +extern size_t nrules; extern int parse_errors; extern const char *formerpath; @@ -46,3 +46,4 @@ int clearpersist(void); #define NOPASS 0x1 #define KEEPENV 0x2 #define PERSIST 0x4 +#define NOLOG 0x8 |