Package: mp3rename Version: 0.6-9 Severity: normal Tags: patch Correction for bug #272221 is almost OK, but doesn't include the "p" option in the list of acceptable args for getopt, and thus it is not accepted as a valid command line option.
-- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.21-1-686 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages mp3rename depends on: ii libc6 2.5-11 GNU C Library: Shared libraries mp3rename recommends no packages. -- no debconf information
diff -wur mp3rename-0.6.orig/mp3rename.c mp3rename-0.6/mp3rename.c --- mp3rename-0.6.orig/mp3rename.c 2007-07-01 15:41:42.000000000 +0200 +++ mp3rename-0.6/mp3rename.c 2007-07-01 15:43:17.000000000 +0200 @@ -44,7 +44,7 @@ /* Lets checkout the options */ - while ((ch = getopt(argc, argv, "vfhsbia")) != -1) + while ((ch = getopt(argc, argv, "pvfhsbia")) != -1) switch (ch) { case 'v': /* Verbose mode */