I just tested that - daemon starts successfully.

Regards,
Yavor

On Mon, Nov 8, 2010 at 21:51, Kristis Makris <[email protected]> wrote:

> On Mon, 2010-11-08 at 20:22 +0200, Yavor Nikolov wrote:
> > what about sub BINMODE { binmode(@_) } instead of sub BINMODE
> > { binmode($_[0]) }? binmode has several (two) parameters and Bugzilla
> > passes both of them.
>
> The first argument is the class instance, the $self. So... that would
> certainly pass the wrong arguments. The _[0] was wrong too.
>
> Perhaps the following?
>
> sub BINMODE {
>    my $self = shift;
>
>    binmode(@_);
> }
>
> Could you test this?
>
>
_______________________________________________
scmbug-users mailing list
[email protected]
http://lists.mkgnu.net/cgi-bin/mailman/listinfo/scmbug-users

Reply via email to