This file is indexed.

/usr/share/perl5/Parse/Pidl.pm is in libparse-pidl-perl 2:4.2.14+dfsg-0+deb8u9.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
###################################################
# package to parse IDL files and generate code for
# rpc functions in Samba
# Copyright tridge@samba.org 2000-2003
# Copyright jelmer@samba.org 2005
# released under the GNU GPL

package Parse::Pidl;

require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(warning error fatal $VERSION);

use strict;

use vars qw ( $VERSION );

$VERSION = '0.02';

sub warning
{
	my ($l,$m) = @_;
	if ($l) {
		print STDERR "$l->{FILE}:$l->{LINE}: ";
	}
	print STDERR "warning: $m\n";
}

sub error
{
	my ($l,$m) = @_;
	if ($l) {
		print STDERR "$l->{FILE}:$l->{LINE}: ";
	}
	print STDERR "error: $m\n";
}

sub fatal($$) 
{ 
    my ($e,$s) = @_; 
    die("$e->{FILE}:$e->{LINE}: $s\n"); 
}

1;