src/test/ldap: Fix test function in Linux port

pull/31/head^2
Alvaro Herrera 8 years ago
parent 3012061b86
commit c29145f00d
  1. 4
      src/test/ldap/t/001_auth.pl

@ -16,8 +16,8 @@ if ($^O eq 'darwin')
elsif ($^O eq 'linux')
{
$slapd = '/usr/sbin/slapd';
$ldap_schema_dir = '/etc/ldap/schema' if -f '/etc/ldap/schema';
$ldap_schema_dir = '/etc/openldap/schema' if -f '/etc/openldap/schema';
$ldap_schema_dir = '/etc/ldap/schema' if -d '/etc/ldap/schema';
$ldap_schema_dir = '/etc/openldap/schema' if -d '/etc/openldap/schema';
}
elsif ($^O eq 'freebsd')
{

Loading…
Cancel
Save