diff options
author | 2019-11-07 10:51:46 +0000 | |
---|---|---|
committer | 2019-11-07 10:51:46 +0000 | |
commit | 6b31bf08acae32cf9d16f792aa2796ace7893f46 (patch) | |
tree | cf44e8269abb77b9c3b47fa30133f18822852dd6 /sys/ddb/db_expr.c | |
parent | Remove half way implemented address and default route proposals. (diff) | |
download | wireguard-openbsd-6b31bf08acae32cf9d16f792aa2796ace7893f46.tar.xz wireguard-openbsd-6b31bf08acae32cf9d16f792aa2796ace7893f46.zip |
FALSE -> 0, missed in previous.
Spotted by deraadt@
Diffstat (limited to 'sys/ddb/db_expr.c')
-rw-r--r-- | sys/ddb/db_expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c index 528a9a3706f..c491d8083ea 100644 --- a/sys/ddb/db_expr.c +++ b/sys/ddb/db_expr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_expr.c,v 1.15 2019/11/06 07:30:08 mpi Exp $ */ +/* $OpenBSD: db_expr.c,v 1.16 2019/11/07 10:51:46 mpi Exp $ */ /* $NetBSD: db_expr.c,v 1.5 1996/02/05 01:56:58 christos Exp $ */ /* @@ -121,7 +121,7 @@ db_unary(db_expr_t *valuep) db_error("Syntax error\n"); /*NOTREACHED*/ } - *valuep = db_get_value((db_addr_t)*valuep, sizeof(db_addr_t), FALSE); + *valuep = db_get_value((db_addr_t)*valuep, sizeof(db_addr_t), 0); return 1; } db_unread_token(t); |