Issue #1258 - Part 2: Use binoc-central version of ldap

This commit is contained in:
Matt A. Tobin 2019-11-03 13:17:15 -05:00 committed by Roy Tam
commit deb86ab699
94 changed files with 44 additions and 18 deletions

View file

@ -48,6 +48,6 @@ else:
FINAL_LIBRARY = 'xul'
LOCAL_INCLUDES += [
'/ldap/c-sdk/include',
'../../c-sdk/include',
]

View file

@ -723,3 +723,28 @@ nsLDAPURL::GetHasRef(bool *result)
{
return mBaseURL->GetHasRef(result);
}
NS_IMETHODIMP
nsLDAPURL::GetFilePath(nsACString &aFilePath)
{
return mBaseURL->GetFilePath(aFilePath);
}
NS_IMETHODIMP
nsLDAPURL::SetFilePath(const nsACString &aFilePath)
{
return mBaseURL->SetFilePath(aFilePath);
}
NS_IMETHODIMP
nsLDAPURL::GetQuery(nsACString &aQuery)
{
return mBaseURL->GetQuery(aQuery);
}
NS_IMETHODIMP
nsLDAPURL::SetQuery(const nsACString &aQuery)
{
return mBaseURL->SetQuery(aQuery);
}