ongrep

A cleaned up fork of ngrep for OpenBSD
git clone git://git.sgregoratto.me/ongrep
Log | Files | Refs | README | LICENSE

commit 23632fb835e9a596ad203a4ae489c7ab175e6107
parent 46e51e4332bc69323751548d1490b8d8582589c7
Author: Jordan Ritter <jpr5@darkridge.com>
Date:   Sun, 20 Feb 2005 03:41:06 +0000

remove DROPPRIVS_ONLY_ROOT

Diffstat:
Mconfigure.in | 21---------------------
1 file changed, 0 insertions(+), 21 deletions(-)

diff --git a/configure.in b/configure.in @@ -103,26 +103,6 @@ else USE_DROPPRIVS="0" fi -dnl -dnl Some people have complained that they don't care to drop -dnl privileges if they're not root, hence this flag. -dnl - -AC_ARG_ENABLE(dropprivs-onlyroot, -[ --enable-dropprivs-onlyroot drop privileges only from root], -[ - use_dropprivs_onlyroot="$enableval" -], -[ - use_dropprivs_onlyroot="no" -]) - -if test $use_dropprivs_onlyroot = yes; then - DROPPRIVS_ONLY_ROOT="1" -else - DROPPRIVS_ONLY_ROOT="0" -fi - dnl dnl Configure the regular expression library. @@ -382,7 +362,6 @@ AC_DEFINE_UNQUOTED(USE_PCRE, $USE_PCRE) AC_DEFINE_UNQUOTED(USE_DROPPRIVS, $USE_DROPPRIVS) AC_DEFINE_UNQUOTED(DROPPRIVS_USER, "$DROPPRIVS_USER") -AC_DEFINE_UNQUOTED(DROPPRIVS_ONLY_ROOT, $DROPPRIVS_ONLY_ROOT) AC_DEFINE_UNQUOTED(HAVE_DUMB_UDPHDR, $HAVE_DUMB_UDPHDR)