diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2016-06-16 17:40:31 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2016-06-16 17:40:31 +0000 |
commit | 4b12fa5843c19eb5860b3702b8250a53bab1797c (patch) | |
tree | 7e3320a3e5333acb4dea9caace986670edb653ee /usr.bin/doas/Makefile | |
parent | 8b0bbdd39dd22572c5049a83b6184919e4a4c7e9 (diff) |
the environment handling code was showing its age. just because environ
is a char** array doesn't mean we must exclusively operate on such.
convert to a red-black tree, manipulate as desired, then flatten to array.
potentially overkill for the current operations, but reading the tea leaves
i see that more manipulations are desired.
ok tb
(and some thought provoking disagreement from martijn)
Diffstat (limited to 'usr.bin/doas/Makefile')
-rw-r--r-- | usr.bin/doas/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/doas/Makefile b/usr.bin/doas/Makefile index 809fe0b71cb..7fc38df14c7 100644 --- a/usr.bin/doas/Makefile +++ b/usr.bin/doas/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.1 2015/07/16 20:44:21 tedu Exp $ +# $OpenBSD: Makefile,v 1.2 2016/06/16 17:40:30 tedu Exp $ -SRCS= parse.y doas.c +SRCS= parse.y doas.c env.c PROG= doas MAN= doas.1 doas.conf.5 |