Bug#257096: Bug still current

2012-09-11 Thread Adrian Irving-Beer
Hi, Answered my own question, two years later. Yes, this bug is still current; I just did a new Postfix 2.7 install (Debian squeeze) and had DNS resolution issues. Googled for the problem and found my own bug report. Heh. :) No worries, just thought I'd mention it. -- To UNSUBSCRIBE, email

Bug#611036: clive: YouTube formats are outdated, and config validation prevents using new names

2011-01-24 Thread Adrian Irving-Beer
Package: clive Version: 2.2.13-5 Severity: normal The YouTube module appears to have evolved to use new names for many of the formats. From YouTube.pm: # flv flv_240p = '5', flv_360p = '34', flv_480p = '35', # mp4 mp4_360p = '18',

Bug#603153: xpdf: Crashes on all PDFs: Assertion `mutex-__data.__owner == 0' failed

2010-11-11 Thread Adrian Irving-Beer
Package: xpdf Version: 3.02-11 Severity: important Once upgraded to 3.02-11, xpdf fails to open all PDF files: % xpdf /tmp/specs.pdf xpdf: pthread_mutex_lock.c:62: __pthread_mutex_lock: Assertion `mutex-__data.__owner == 0' failed. zsh: abort xpdf /tmp/specs.pdf The lenny version works

Bug#576245: clive: failures with newer youtube videos

2010-04-02 Thread Adrian Irving-Beer
FYI, you can still get the video_id from the JSON parameters by changing this (in YouTube.pm) id = qr|video_id: (.*?)|, into this id = qr|'VIDEO_ID': '(.*?)'|, or, if you want backwards compatibility, this id = qr|[']video_id[']: ['](.*?)[']|i, The problem is then the

Bug#572261: slirpvde: Massive memory leak

2010-03-02 Thread Adrian Irving-Beer
Package: vde2 Version: 2.2.3-3 Severity: important Tags: patch slirpvde leaks over 1600 bytes per packet received, even tiny ones like pings. This makes it practically unusable for a production system in the current state. I've attached a patch to fix the leak. -- System Information: Debian

Bug#572261: Acknowledgement (slirpvde: Massive memory leak)

2010-03-02 Thread Adrian Irving-Beer
tags 572261 - patch thanks Okay, turns out my patch was a bit naive -- it's been a while since I did any serious C coding. The patch is bad but the problem is real. I can trigger it via pings, via regular TCP traffic, etc. I'll see if I can come up with another patch soon, since this is a

Bug#572261: New patch

2010-03-02 Thread Adrian Irving-Beer
tags 572261 + patch thanks Okay, this one doesn't leak *or* crash, so I think it's at least vaguely correct. :) Valgrind was getting confused by the memory buffers and blaming slirp_input(), since that's where the original malloc() (via m_get) occurs. (Is that buffering really necessary? Last

Bug#570308: redmine: Expects to write to plugin_assets in /usr

2010-02-17 Thread Adrian Irving-Beer
Package: redmine Version: 0.9.2-2 Severity: serious Justification: Policy 9.1.1 FHS chapter 4 The plugin_assets directory is expected to be writable by the user running Redmine. In the Debian redmine package, this is currently /usr/share/redmine/public/plugin_assets. The package scripts

Bug#257096: postfix: noexec /var breaks postfix chroot

2010-02-17 Thread Adrian Irving-Beer
retitle 257096 postfix: noexec /var breaks postfix chroot thanks I've been going through my old reported bugs today and I'm wondering, is this bug still current? I notice I have a Postfix server (2.5.5-1.1 lenny) that has a noexec /var, and yet Postfix seems to be working fine with a relayhost

Bug#570171: /usr/lib/ruby/1.8/active_support/test_case.rb: Depends on nonexistant rails/backtrace_cleaner

2010-02-16 Thread Adrian Irving-Beer
Package: libactivesupport-ruby1.8 Version: 2.3.3-1 Severity: normal File: /usr/lib/ruby/1.8/active_support/test_case.rb While attempting to configure Redmine (via the Debian package), errors were being masked by a second error: no such file to load -- rails/backtrace_cleaner

Bug#566028: qemu-system: Unstated dependency on libgssapi_krb5.so.2

2010-01-20 Thread Adrian Irving-Beer
Package: qemu-system Version: 0.11.1-2 Severity: serious Justification: Policy 3.5 After installing the latest qemu packages, I found qemu would no longer run due to a missing library dependency. % ldd /usr/bin/qemu-system-i386 | grep gss libgssapi_krb5.so.2 = /usr/lib/libgssapi_krb5.so.2

Bug#566032: qemu-kvm: Unstated dependency on libgssapi_krb5.so.2

2010-01-20 Thread Adrian Irving-Beer
Package: qemu-kvm Version: 0.11.1+dfsg-1 Severity: serious Justification: Policy 3.5 In Debian bug #566028, I reported that the latest version of qemu-system had an unstated dependency on libgssapi_krb5.so.2. It seems that qemu-kvm now has the same dependency now as well: % ldd /usr/bin/kvm |

Bug#565485: bluez-utils: 'rfcomm listen' wastes a lot of CPU

2010-01-16 Thread Adrian Irving-Beer
Package: bluez-utils Version: 4.57-1 Severity: normal I use 'rfcomm listen' in combination with 'gpspipe' to relay GPS data from my eeePC to my Blackberry. I noticed, however, that the CPU overhead from 'rfcomm listen' is quite significant -- over 10% on my eeePC 901. Running 'strace' reveals

Bug#564168: net/http.rb: Error on page fetch exception (regression)

2010-01-07 Thread Adrian Irving-Beer
Package: libruby1.8 Version: 1.8.7.248-1 Severity: normal Tags: patch I have some code that does web fetches and sometimes expects them to fail, but interprets the failure and continues running. That's how it used to work, but as of the latest libruby1.8 upgrade, it breaks with the following

Bug#504315: lighttpd: Debian graceful restart isn't

2008-11-02 Thread Adrian Irving-Beer
Package: lighttpd Version: 1.4.19-5 Severity: normal When lightttpd receives a SIGINT, it immediately closes the listener socket for new connections. While it continues to serve old connections (including keepalive sessions), any new incoming connections will be refused.

Bug#504319: lighttpd: Unnecessary restarts to rotate logs

2008-11-02 Thread Adrian Irving-Beer
Package: lighttpd Version: 1.4.19-5 Severity: minor The /etc/logrotate.d/lighttpd postrotate script uses the lighttpd initscript with the 'reload' argument, which reloads the configuration via a graceful SIGINT shutdown and restart. (Note that the current SIGINT shutdown isn't actually

Bug#503853: gnupg: Sometimes hangs on truncated binary input

2008-10-28 Thread Adrian Irving-Beer
Package: gnupg Version: 1.4.9-3 Severity: normal Here's the sequence of events: % echo '1234' | gpg --sign foo I enter my passphrase % ls -l foo -rw-r--r-- 1 wisq wisq 98 2008-10-28 15:19 foo % dd if=foo of=bar bs=1 count=97 97+0 records in 97+0 records out

Bug#503853: gnupg: Sometimes hangs on truncated binary input

2008-10-28 Thread Adrian Irving-Beer
Some additional info: When I say only hangs sometimes, I mean for particular inputs, not each time I run gpg --verify. That is, when I generate foo and truncate one byte, the result is sometimes just unparseable, and sometimes results in a hang. I've attached an example that works, but hangs

Bug#483439: zsh-beta: Large file support missing

2008-05-28 Thread Adrian Irving-Beer
Package: zsh-beta Version: 4.3.6-dev-0+20080516-1 Severity: normal zsh can write to oversize files, but zsh-beta can't: --- [EMAIL PROTECTED]:~% rm testfile [EMAIL PROTECTED]:~% dd of=testfile bs=1

Bug#468654: zsh: rsync completion fails to complete remote paths with spaces

2008-03-02 Thread Adrian Irving-Beer
On Fri, Feb 29, 2008 at 07:57:55PM -0500, Clint Adams wrote: Adrian, does this do the trick? Indeed, it works fine. signature.asc Description: Digital signature

Bug#468654: zsh: rsync completion fails to complete remote paths with spaces

2008-02-29 Thread Adrian Irving-Beer
Package: zsh Version: 4.3.5-4 Severity: normal Tags: patch If I have the following on host 'alpha': /tmp/foo bar baz/foo /tmp/foo bar baz/bar /tmp/foo bar baz/baz I can do this: % rsync alpha:/tmp/fooTAB -- % rsync alpha:/tmp/foo\\\ bar\\\ baz/ But I

Bug#432890: graphviz: 'dot' creates corrupted output for certain input (regression)

2007-07-13 Thread Adrian Irving-Beer
On Thu, Jul 12, 2007 at 11:25:53PM +0200, Cyril Brulebois wrote: Thanks for the different output formats you tried, it shows it is not only an output plugin problem. Yeah. Also, after I sent the report, I checked the SVG file, and it looks like it tries to declare an SVG image 23.91 inches

Bug#432890: graphviz: 'dot' creates corrupted output for certain input (regression)

2007-07-12 Thread Adrian Irving-Beer
Package: graphviz Version: 2.12-3 Severity: normal While attempting to regenerate some old graphs, I found that 'dot' was producing corrupted PostScript output for a certain .dot file. The offending file is available at the following URL (2700 bytes):

Bug#308110: Launching on 'about:blank' loads no page; denies functionality.

2007-06-25 Thread Adrian Irving-Beer
On Mon, Jun 11, 2007 at 11:35:33AM +0200, David Martínez Moreno wrote: Hello, Adrian. I do not understand completely your comment. If I run konqueror about:blank from konsole, I get a blank konqueror with the cursor ready in the location bar. Isn't it what you want? This behaviour is fine

Bug#308110: Launching on 'about:blank' loads no page; denies functionality.

2007-06-08 Thread Adrian Irving-Beer
I understand this is a low priority issue, but it should not be mistaken for a mere corner case that will never be used. I encounter this bug every single day; I have simply grown accustomed to it and now routinely work around it, when it affects me at all. I always launch Konqueror via

Bug#425937: libhtml-mason-perl: 'exec' on CGI-based request does not return a value.

2007-05-24 Thread Adrian Irving-Beer
2007 Adrian Irving-Beer [EMAIL PROTECTED] * Return SUPER::exec return value in CGI 'exec' method. diff -rN -u old-libhtml-mason-perl-1.35/lib/HTML/Mason/CGIHandler.pm new-libhtml-mason-perl-1.35/lib/HTML/Mason/CGIHandler.pm --- old-libhtml-mason-perl-1.35/lib/HTML/Mason/CGIHandler.pm 2007-05-24

Bug#424688: libmasonx-request-withapachesession-perl: Wrong request object passed to Apache::Session::Wrapper under CGI

2007-05-16 Thread Adrian Irving-Beer
Package: libmasonx-request-withapachesession-perl Version: 0.30-2 Severity: normal Tags: patch I recently attempted to get this module working under FastCGI using the HTML::Mason::CGIHandler module -- which this module is apparently designed to support, as noted by its reference to the

Bug#418923: Manpage: copy-dirlinks is -k, not -K

2007-04-12 Thread Adrian Irving-Beer
Package: rsync Version: 2.6.9-3 Severity: minor --copy-dirlinks is incorrectly labelled as shortcut -K in the OPTIONS section of the manpage. The OPTIONS SUMMARY section appears to have it right. -- System Information: Debian Release: 4.0 APT prefers unstable APT policy: (500, 'unstable'),

Bug#396461: offlineimap: Dies trying to upload messages with invalid dates

2006-10-31 Thread Adrian Irving-Beer
Package: offlineimap Version: 4.0.14 Severity: normal I received a spam with a Date: header of Tue, 31 Nov 2006. It downloaded fine, but when I moved it to my spam folder, it would crash whenever it tried to upload the message (back to the IMAP server). Obviously, there is no thirty-first of

Bug#387173: xvnc4viewer: Terminal password entry broken when 0 to 7 characters in length

2006-09-12 Thread Adrian Irving-Beer
Package: xvnc4viewer Version: 4.1.1+X4.3.0-17 Severity: normal This is similar to bug #386404, but whereas that bug seems to have been solved, this one is still open for me as of package version 17. When connecting from my Debian laptop (xvnc4viewer) to a Windows 2000 Server (RealVNC, latest

Bug#386649: sysvinit: Dangerous instructions in NEWS.Debian, removes packages

2006-09-08 Thread Adrian Irving-Beer
Package: sysvinit Version: 2.86.ds1-18 Severity: critical Justification: breaks unrelated software The NEWS.Debian has these instructions on how to fix the broken init.d links caused by bug #386500: for p in `dpkg -S /etc/init.d/*|cut -d: -f1|sort -u`; do apt-get --reinstall install -y

Bug#380656: dosbox: 0.63 to 0.65 fatal regression running Game Wizard tool

2006-07-31 Thread Adrian Irving-Beer
Package: dosbox Version: 0.65-1 Severity: normal Game Wizard tool is a DOS Terminate and Stay Resident (TSR) program that searches and edits memory, and can lock memory bytes to a specific value. Secondary functions include altering execution speed, taking screenshots, boss screen, saving and

Bug#378052: kxmleditor: Find fails silently when Create items on demand is set

2006-07-12 Thread Adrian Irving-Beer
Package: kxmleditor Version: 1.1.4-3 Severity: normal Using Find to search for elements I know exist in my document (but are several layers deep and unexpanded), I get a silent failure, marked only by an error on the console: kxmleditor: ERROR: KXE_TreeView::selectNode can't find an item to

Bug#371038: tla 1.3.3-3.3 can no longer write to WebDAV archives

2006-06-06 Thread Adrian Irving-Beer
Package: tla Version: 1.3.3-3.3 Severity: important An attempted import with tla 1.3.3-3.3. Note that 'wisq' is censored with '' to avoid spamming webcrawlers: % tla import -S -sImport clean build tree. * creating category [EMAIL PROTECTED]/dboxfe * creating branch [EMAIL

Bug#296811: SSH hanging issues

2006-04-11 Thread Adrian Irving-Beer
I ran into this exact problem today with 1:3.4p1-1.woody.3. It's undoubtedly a server-side MTU issue. I was able to do ssh [EMAIL PROTECTED] /sbin/ifconfig eth0 mtu 1000 and after a brief pause, everything works again. The pause is presumably because it sent me an oversized packet

Bug#355662: Installation report

2006-03-07 Thread Adrian Irving-Beer
On Tue, Mar 07, 2006 at 09:05:20AM -0500, Lennart Sorensen wrote: It is correct behaviour. If cfdisk doesn't do the same thing if you use it to add a partition to an existing partition table, then cfdisk is broken. I suspect it only rearanged partitions made within one session, which is

Bug#355662: Installation report

2006-03-07 Thread Adrian Irving-Beer
On Tue, Mar 07, 2006 at 11:36:45AM -0500, Lennart Sorensen wrote: The ability to add to logical volumes without worrying about where they start and end makes it much more flexible than partitions ever were. Right, and that's what I meant -- my dividing it up into multiple partitions was just

Bug#355662: Installation report

2006-03-06 Thread Adrian Irving-Beer
Package: installation-reports Boot method: netinst CD image booted from CD-R Image version: netinst i386 downloaded at 2006-03-06 21:56 Date: 2006-03-06 22:30 (approx) Machine: Generic tower system Processor: Pentium 4 at 1.8 GHz Memory: 512M. Once had a bad RAM sector, but memtest86+ reports

Bug#354901: konqueror: JavaScript loading of external XML always uses cache

2006-03-01 Thread Adrian Irving-Beer
Package: konqueror Version: 4:3.5.0-4 Severity: normal (Hope this is the correct place to send Konqueror JavaScript issues.) When using e.g. doc = document.implementation.createDocument to create a DOM document, then doc.load('some-file.xml') to load an XML document (either locally or from the

Bug#348584: eclipse-jdt: Won't start without 'eclipse' package

2006-01-17 Thread Adrian Irving-Beer
Package: eclipse-jdt Version: 3.1.1-8 Severity: normal With only the 'eclipse-jdt' package installed, I cannot run 'eclipse'; I get the attached logfile. It appears to be an issue with the initial configurator. Since 'eclipse-jdt' is described as JDT provides a whole Java IDE, I incorrectly

Bug#330248: quagga: Unexpected ospfd horizon segfaults after 0.99 upgrade

2005-11-13 Thread Adrian Irving-Beer
On Tue, Sep 27, 2005 at 01:05:37AM +0200, Christian Hammers wrote: please report this to the Quagga mailing list, I do not know enough about routing to help you here. I unfortunately lacked the time to report this problem until this weekend. However, 0.99.2 was released on Friday. This

Bug#330248: quagga: Unexpected ospfd horizon segfaults after 0.99 upgrade

2005-09-26 Thread Adrian Irving-Beer
Package: quagga Version: 0.99.1-3 Severity: normal I have a laptop, connected via VPN over wireless to a desktop, connected via Ethernet to a local Internet gateway, who is then connected via VPNs to two other Internet gateways. All gateways, plus the desktop and laptop, are a part of an area-0

Bug#328399: libmasonx-request-withapachesession-perl: Fails to properly handle subrequests.

2005-09-15 Thread Adrian Irving-Beer
Package: libmasonx-request-withapachesession-perl Version: 0.30-1 Severity: normal Tags: patch Due to a mistaken 'return' statement, the new subroutine on MasonX::Request::WithApacheSession returns an undefined value if a subrequest is created, rather than returning itself. $m-make_subrequest

Bug#320953: Debian bug #320953

2005-08-02 Thread Adrian Irving-Beer
Are you using GCC 4.0, now the default for sid? I had this problem with GCC 4.0, but GCC 3.3 seems to compile generic_serial.c okay, albeit with lots of warnings. signature.asc Description: Digital signature

Bug#313623: atc: Cannot specify direction of circling as per atc(6)

2005-06-14 Thread Adrian Irving-Beer
Package: bsdgames Version: 2.17-1 Severity: normal According to the manpage, I should be able to circle left (counter-clockwise) as well as right (clockwise, the default), but the game does not accept 'l' or 'r' arguments after 'c'. In the game, pressing 'c' and then '?' for help gets me

Bug#308258: vim: 'set secure' isn't for own files; docs misleading.

2005-05-08 Thread Adrian Irving-Beer
Package: vim Version: 1:6.3-058+1 Severity: normal Taken from the help docs for the 'secure' option: [. . .] On Unix this option is only used if the .vimrc or .exrc is not owned by you. This can be dangerous if the systems allows users to do a chown. You better set 'secure' at the

Bug#308110: Launching on 'about:blank' loads no page; denies functionality.

2005-05-07 Thread Adrian Irving-Beer
Package: konqueror Version: 4:3.3.2-1 Severity: normal Within Konqueror, accessing the URL 'about:blank' (like with most browsers) accesses a blank page. White background, 'page loaded' status message, URL in the location bar. All is good. Launching konqueror as 'konqueror about:blank' does

Bug#307830: hylafax-server: Post-removal script fails silently on purge; prevents removal.

2005-05-05 Thread Adrian Irving-Beer
Package: hylafax-server Version: 4.2.1-5 Severity: normal The postrm script has -e set, so if purging the package, the line [ -e $i ] rm $i (near the end) causes the script to fail if the file doesn't exist, rather than ignoring it. Also, subsequent purges (after the first is

Bug#306813: konqueror: Right-click bookmark in menu; 'copy link address' only half works.

2005-04-29 Thread Adrian Irving-Beer
On Fri, Apr 29, 2005 at 12:16:43PM +0200, Kevin Krammer wrote: Can you try to paste into a different application which uses the standard paste shortcut, e.g. not a terminal window as those tend to have different copypaste shortcuts due to the need to have CTRL+C for sending the interrupt

Bug#306813: konqueror: Right-click bookmark in menu; 'copy link address' only half works.

2005-04-29 Thread Adrian Irving-Beer
On Fri, Apr 29, 2005 at 04:52:54PM +0200, Kevin Krammer wrote: Using Edit - Paste works in Konsole, as does shift-insert. In my normal console (urxvt), I use middle-click to paste, and it works for everything (except the subject of this bug). Middle click pastes a different clipboard,

Bug#306813: konqueror: Right-click bookmark in menu; 'copy link address' only half works.

2005-04-29 Thread Adrian Irving-Beer
On Fri, Apr 29, 2005 at 06:24:27PM +0200, Kevin Krammer wrote: Okay, but this is in contrast to other Konqueror behaviour, then. If I right-click on a link and select 'copy link address', it puts it on both the clipboard and the selection. If I do the same to a bookmark, it only does

Bug#306813: konqueror: Right-click bookmark in menu; 'copy link address' only half works.

2005-04-28 Thread Adrian Irving-Beer
Package: konqueror Version: 4:3.3.2-1 Severity: normal If I right-click on a bookmark and select 'copy link address', I can paste it into Konqueror. However, the X clipboard is not updated; in fact, it's blanked. So I cannot paste the address into another application, e.g. a shell. -- System

Bug#306478: Doc bug

2005-04-27 Thread Adrian Irving-Beer
I posted the same issue to the mailing list, and was informed by the author that in the new IMMS, you turn on XMMS 'shuffle' mode, which IMMS detects and supersedes. Hence, this is actually a documentation bug -- albeit an important one, because the package is useless unless the user knows this.

Bug#305716: hotkeys: Control volumes other than master

2005-04-21 Thread Adrian Irving-Beer
Package: hotkeys Version: 0.5.7.3 Severity: wishlist My laptop has two separate 'master' volumes, one for speakers and one for headphones. It'd be nice to be able to control another channel (e.g. PCM) without having to patch the source myself -- as I've done in the past and have to do (again)

Bug#304703: kismet: Client list sorting is reversed

2005-04-14 Thread Adrian Irving-Beer
Package: kismet Version: 2005.04.R1-1 Severity: minor Most factors I am able to sort by appear to be reversed. Sorting by 'packets descending' puts higher packets on top for the main screen, but puts them on the bottom for the clients screen. Sorting by MAC puts 00:* below 90:*. Sorting by

Bug#119836: Wishlist item appears to be done

2005-04-11 Thread Adrian Irving-Beer
I've had this item in my Konqueror for a long time now (currently 3.3.2). Should we close this report? signature.asc Description: Digital signature

Bug#304223: konqueror: Changing focus to/from large modified textarea causes dramatic downwards scrolling

2005-04-11 Thread Adrian Irving-Beer
Package: konqueror Version: 4:3.3.2-1 Severity: normal This bug may be related to bug #290040, but I do not know for certain, so I'm filing it as a new report. The best way to explain this is probably by example: * I pull up the Wikipedia article on the Cold War and begin editing. * I

Bug#257096: Bug #257096, re: shared libs in /var

2005-04-10 Thread Adrian Irving-Beer
Another solution is to move /var/spool/postfix/lib to another partition, then mount (potentially via fstab) that directory using 'bind' mounting. Unlike a symbolic link, a bind mount does work for chroot. I am not a dynamic-linking-in-C expert, but do we really actually need the .so's in /var?

Bug#301249: tcptraceroute: Locks up network device unless tcpdump is running

2005-03-24 Thread Adrian Irving-Beer
Package: tcptraceroute Version: 1.5beta6-1 Severity: important When used on my laptop (via Ethernet), tcptraceroute fails to function, and (IIRC) has done so for as long as I've tried it. Further, while active, the system cannot receive packets on the Ethernet interface, for *any* application.

Bug#279091: hotplug: Spurious shutting down of TUN devices on Ethernet state change

2005-03-20 Thread Adrian Irving-Beer
On Sun, Mar 20, 2005 at 02:37:15PM +0100, Marco d'Itri wrote: Still waiting for an answer from the submitter: Thanks for the reminder. The issue seemed to go away on its own, and I had forgotten about this bug. So I pulled up some backups from back when I filed the report and determined what

Bug#300327: mutt: Fails to thread properly without an @ symbol in Message-ID field

2005-03-18 Thread Adrian Irving-Beer
Package: mutt Version: 1.5.6-20040907+3 Severity: normal If a message lacks an @ ('at') symbol in the Message-ID field, Mutt refuses to connect messages to it, even if they correctly specify the In-Reply-To header. Further, connecting a thread manually using the '' key (link-threads) lasts only

Bug#299082: openvpn: Nested configs do not respect late --cd

2005-03-11 Thread Adrian Irving-Beer
Package: openvpn Version: 1.99+2.rc16-1 Severity: normal Ordinarily, one can use 'config' inside a config file to source other config files (for a modular configuration). Unfortunately, in the default setup, this produces errors: Options error: In /etc/openvpn/main.conf:26: Error

Bug#294030: chrony: Freezes and modutils

2005-02-24 Thread Adrian Irving-Beer
Package: chrony Version: 1.20-6 Followup-For: Bug #294030 Note that I came to the same rtc vs. genrtc conclusion independently, so it seems chrony+genrtc is indeed the culprit here. You can solve your problem by creating /etc/modprobe.d/local (for example) and putting alias

Bug#294030: chrony: Freezes and modutils

2005-02-24 Thread Adrian Irving-Beer
On Thu, Feb 24, 2005 at 12:03:24PM -0500, Adrian Irving-Beer wrote: I believe this is actually a bug in modutils. Note how /etc/modutils/arch/i386 has that exact alias at the end. But /etc/modprobe.d/arch/i386 does not. Though all my statements remain, I should note that /etc/modprobe.d

Bug#291450: perl: index() on two tainted constants breaks subsequent open(FH, -|)

2005-01-20 Thread Adrian Irving-Beer
Package: perl Version: 5.8.4-5 Severity: normal Tags: sarge The following script causes a strange taint error when supplied with two command-line parameters: #!/usr/bin/perl -T use constant C_A = $ARGV[0]; use constant C_B = $ARGV[1]; index(C_A, C_B);