Package: iproute
Version: 20041019-3
Severity: minor
Tags: patch
While hacking netbug, I created the attached patch to remove the slightly
annoying warning on stderr about the stripping of '/' characters in netbug.
There is no need to warn about this. It is intended behaviour.
Regards,
Allard
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ac10-byte
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages iproute depends on:
ii libatm1 2.4.1-17 shared library for ATM (Asynchrono
ii libc6 2.3.2.ds1-22 GNU C Library: Shared libraries an
-- no debconf information
--- /sbin/netbug.orig 2005-06-14 10:30:09.965229662 +0200
+++ /sbin/netbug 2005-06-14 11:00:45.190133902 +0200
@@ -37,7 +37,7 @@
fi
cd /tmp
-tar c $tmppath | gzip -9c > $netbugtar
+{ tar c $tmppath | gzip -c9 > $netbugtar; } 2>&1 | grep -v 'Removing leading
... from member names'
uuencode $netbugtar $netbugtar | mail -s $netbug "$mail"
echo "Sending to <$mail>; subject is $netbug"