Your message dated Fri, 22 Dec 2006 02:38:42 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Current package doesn't have this bug
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: sox
Version: 12.17.3-3
`play' shell-script, a wrapper for sox (included in sox package) does
not correctly if it is used as `rec' command. (/usr/bin/rec is a
symbolic link for /usr/bin/play.) Transcript is as follows:
$ rec a.wav
Send break (control-c) to end recording
sox: Unknown output file format for '': Filetype was not specified
And here is a patch. The added line filename="$filename_0" is essential.
diff -ru sox-12.17.3.orig/play.in sox-12.17.3/play.in
--- sox-12.17.3.orig/play.in Fri Sep 17 19:34:50 2004
+++ sox-12.17.3/play.in Fri Sep 17 19:35:54 2004
@@ -195,6 +195,13 @@
# If name is "rec" then record else assume user is wanting to play
# a sound file.
if [ "$program_name" = "rec" ]; then
+ if [ "$count" -gt 1 ]; then
+ echo "\
+$program_name: too many arguments
+Try \`$program_name --help' for more information." 1>&2
+ exit 1
+ fi
+ filename="$filename_0"
# Don't send data to stdout if they are reading from it.
if [ "$filename" = "-" ]; then
--
NIDE Naoyuki
[EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
Version: 12.17.9-1
-Pascal
--
Homepage (http://organact.mine.nu)
Debian GNU/Linux (http://www.debian.org)
École de technologie supérieure (http://www.etsmtl.ca)
--- End Message ---