From 8069bfe005ce234fe2c989ff3d956189a2cc0cf9 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. --- directory/perldap/Conn.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/directory/perldap/Conn.pm b/directory/perldap/Conn.pm index 08447ccf2008..183fae825f9d 100644 --- a/directory/perldap/Conn.pm +++ b/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});