From fe233a2e1157eb45968e1bfff4e1dac8cbb0b807 Mon Sep 17 00:00:00 2001 From: leif Date: Wed, 29 Jul 1998 08:41:39 +0000 Subject: [PATCH] Changed to not import the Utils name space into this object. Bad Leif. git-svn-id: svn://10.0.0.236/trunk@6722 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/directory/perldap/Conn.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/directory/perldap/Conn.pm b/mozilla/directory/perldap/Conn.pm index 1c3995dcf78..e384e0aa6bb 100644 --- a/mozilla/directory/perldap/Conn.pm +++ b/mozilla/directory/perldap/Conn.pm @@ -1,5 +1,5 @@ ############################################################################# -# $Id: Conn.pm,v 1.4 1998-07-29 08:23:53 leif Exp $ +# $Id: Conn.pm,v 1.5 1998-07-29 08:41:39 leif Exp $ # # The contents of this file are subject to the Mozilla Public License # Version 1.0 (the "License"); you may not use this file except in @@ -29,7 +29,7 @@ package Mozilla::LDAP::Conn; -use Mozilla::LDAP::Utils qw(:all); +use Mozilla::LDAP::Utils; use Mozilla::LDAP::API qw(/.+/); use Mozilla::LDAP::Entry; @@ -183,7 +183,7 @@ sub search my $entry; my $res = \$resv; - $scope = str2Scope($scope); + $scope = Mozilla::LDAP::Utils::str2Scope($scope); $filter = "(objectclass=*)" if ($filter =~ /^ALL$/i); ldap_msgfree($self->{ldres}) if defined($self->{ldres});