From ba88d443e9dd07bb1321cd4efb6714199acf7025 Mon Sep 17 00:00:00 2001 From: Gavin Henry Date: Sun, 1 Jul 2007 22:36:24 +0000 Subject: [PATCH] Cater for perl 5+ --- servers/slapd/back-perl/SampleLDAP.pm | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/servers/slapd/back-perl/SampleLDAP.pm b/servers/slapd/back-perl/SampleLDAP.pm index 7e42dad86c..ca1281267d 100644 --- a/servers/slapd/back-perl/SampleLDAP.pm +++ b/servers/slapd/back-perl/SampleLDAP.pm @@ -1,8 +1,3 @@ -package SampleLDAP; -use strict; -use warnings; -use POSIX; - # This is a sample Perl module for the OpenLDAP server slapd. # $OpenLDAP$ ## This work is part of OpenLDAP Software . @@ -28,15 +23,20 @@ use POSIX; # # See the slapd-perl(5) manual page for details. -our $VERSION = '1.00'; +package SampleLDAP; +use strict; +use warnings; +use POSIX; + +$SampleLDAP::VERSION = '1.01'; sub new { my $class = shift; my $this = {}; bless $this, $class; - print , "Here in new\n"; - print , 'Posix Var ' . BUFSIZ . ' and ' . FILENAME_MAX . "\n"; + print {*STDERR} "Here in new\n"; + print {*STDERR} 'Posix Var ' . BUFSIZ . ' and ' . FILENAME_MAX . "\n"; return $this; } @@ -49,7 +49,7 @@ sub search { my ( $base, $scope, $deref, $sizeLim, $timeLim, $filterStr, $attrOnly, @attrs ) = @_; - print , "====$filterStr====\n"; + print {*STDERR}, "====$filterStr====\n"; $filterStr =~ s/\(|\)//gm; $filterStr =~ s/=/: /m; @@ -150,7 +150,7 @@ sub delete { my ($dn) = @_; - print , "XXXXXX $dn XXXXXXX\n"; + print {*STDERR} "XXXXXX $dn XXXXXXX\n"; delete $this->{$dn}; return 0; } @@ -160,8 +160,8 @@ sub config { my (@args) = @_; local $, = ' - '; - print , @args; - print , "\n"; + print {*STDERR} @args; + print {*STDERR} "\n"; return 0; } -- 2.39.5