Subject: Re: libc.112 vs perl/spamassassin problems
To: None <current-users@netbsd.org>
From: Takahiro Kambe <taca@back-street.net>
List: current-users
Date: 02/24/2004 02:25:25
I've updated source and update libc.so.12.112.
include/netdb.h 1.33
lib/libc/net/getprotoent_r.c 1.2
lib/libc/net/getservent_r.c 1.2
In message <20040224.001259.55722594.taca@back-street.net>
on Tue, 24 Feb 2004 00:12:59 +0900 (JST),
Takahiro Kambe <taca@back-street.net> wrote:
> #!/usr/pkg/bin/perl
>
> @x = getservbyname("pop3", "tcp");
>
> 1;
This script stop dumping core but still problem.
% perl -d foo.pl
...
main::(/var/tmp/foo.pl:3): @x = getservbyname("pop3", "tcp");
DB<1> n
main::(/var/tmp/foo.pl:5): print $x[0], $x[1], "\n";
DB<1> x @x
0 ''
1 ''
2 110
3 'tcp'
This should be:
0 'pop3'
1 ''
2 110
3 'tcp'
Still spamassasin's spamd dumping core.
--
Takahiro Kambe <taca@back-street.net>