[Pkg-dkms-maint] Bug#630772: Fixed locally

Bob Vincent bobvin at pillars.net
Sat Dec 10 19:54:57 UTC 2011


I fixed this locally as follows:

--- /usr/share/perl5/Debconf/ConfModule.pm~     2011-06-23 
03:01:31.000000000 -0400
+++ /usr/share/perl5/Debconf/ConfModule.pm      2011-12-10 
14:45:22.500307649 -0500
@@ -112,7 +112,9 @@
         my $this=shift;

         debug developer => "<-- $_";
-       return 1 unless defined && ! /^\s*#/; # Skip blank lines, comments.
+       return 1 unless defined; # Skip empty input.
+       return 1 if /^\s*$/; # Skip blank lines.
+       return 1 if /^\s*#/; # Skip comments.
         chomp;
         my ($command, @params);
         if (defined $this->client_capb and grep { $_ eq 'escape' } 
@{$this->client_capb}) {






More information about the Pkg-dkms-maint mailing list