forked from pool/perl-X500-DN
- don't set $Parse::RecDescent::skip to 'undef' (bnc#799660) * X500-DN-dont_set_skip_to_undef.patch OBS-URL: https://build.opensuse.org/request/show/180035 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-X500-DN?expand=0&rev=16
14 lines
490 B
Diff
14 lines
490 B
Diff
Index: X500-DN-0.29/DN.pm
|
|
===================================================================
|
|
--- X500-DN-0.29.orig/DN.pm 2013-06-19 15:59:14.041089488 +0200
|
|
+++ X500-DN-0.29/DN.pm 2013-06-19 15:59:26.211457683 +0200
|
|
@@ -43,7 +43,7 @@ Digit: /[0-9]/
|
|
#$::RD_HINT = 1;
|
|
|
|
local $::RD_AUTOACTION = q{ $item[1] };
|
|
-local $Parse::RecDescent::skip = undef;
|
|
+local $Parse::RecDescent::skip = '';
|
|
my $parser = new Parse::RecDescent ($rfc2253_grammar) or die "Bad RFC 2253 grammar!\n";
|
|
|
|
sub new
|