*** empty log message ***

This commit is contained in:
leif 1998-07-29 05:56:54 +00:00
parent 3268db96ab
commit 352eb5c5c0

View File

@ -1,6 +1,6 @@
#!/usr/bin/perl5
#############################################################################
# $Id: lfinger.pl,v 1.4 1998/07/28 23:28:53 leif Exp $
# $Id: lfinger.pl,v 1.5 1998/07/29 05:56:54 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
@ -26,7 +26,7 @@
#############################################################################
use Getopt::Std; # To parse command line arguments.
use Mozilla::LDAP::Connection; # Main "OO" layer for LDAP
use Mozilla::LDAP::Conn; # Main "OO" layer for LDAP
use Mozilla::LDAP::Utils; # LULU, utilities.
@ -82,8 +82,8 @@ $user=$ARGV[$[];
#############################################################################
# Instantiate an LDAP object, which also binds to the LDAP server.
#
$conn = new Mozilla::LDAP::Connection($ld{host}, $ld{port}, $ld{bind},
$ld{pswd}, $ld{cert});
$conn = new Mozilla::LDAP::Conn($ld{host}, $ld{port}, $ld{bind},
$ld{pswd}, $ld{cert});
die "Could't connect to LDAP server $ld{host}" unless $ld{conn};