From: Thom May Date: Thu, 4 Sep 2003 14:01:19 +0000 (+0000) Subject: ps -xlwwa will cause a warning on stderr and so should be ps xlwwa X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09b30d9fd37dfd87da5823d709070f672668bca0;p=thirdparty%2Fapache%2Fhttpd.git ps -xlwwa will cause a warning on stderr and so should be ps xlwwa PR: http://bugs.debian.org/207585 Obtained from: Submitted by: Albert Cahalan Reviewed by: Thom May git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@101156 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/support/dbmmanage b/src/support/dbmmanage index 3a9602d9cfe..2ca1250714d 100644 --- a/src/support/dbmmanage +++ b/src/support/dbmmanage @@ -211,7 +211,7 @@ sub genseed { srand (time ^ $$ or time ^ ($$ + ($$ << 15))); } else { - for (qw(-xlwwa -le)) { + for (qw(xlwwa -le)) { `ps $_ 2>/dev/null`; $psf = $_, last unless $?; }