1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## backslashes.dpatch by James R. Van Zandt <jrv@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Two of the chkrootkit messages have unnecessary backslashes (#498063)
@DPATCH@
--- chkrootkit-0.48.orig/chkrootkit
+++ chkrootkit-0.48/chkrootkit
@@ -664,7 +664,7 @@
if [ `find ${LIBS} -name libproc.a 2> /dev/null` ]
then
- echo "Possible t0rn v8 \(or variation\) rootkit installed"
+ echo "Possible t0rn v8 (or variation) rootkit installed"
else
if [ "${QUIET}" != "t" ]; then echo "nothing found"; fi
fi
@@ -718,7 +718,7 @@
if [ -d ${ROOTDIR}dev/ptyxx -o -r "${ROOTDIR}usr/lib/.ark?" -o \
-d ${ROOTDIR}usr/doc/"... " ]; then
- echo "Possible Ambient's rootkit \(ark\) installed"
+ echo "Possible Ambient's rootkit (ark) installed"
else
if [ "${QUIET}" != "t" ]; then echo "nothing found"; fi
fi
|