1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-27 07:42:04 +03:00

s4-net: Simplify SamDB connect code.

This commit is contained in:
Jelmer Vernooij
2010-04-08 12:19:51 +02:00
parent 2578072541
commit 479fd9c03f
8 changed files with 10 additions and 49 deletions

View File

@ -73,12 +73,7 @@ class cmd_domainlevel(Command):
lp = sambaopts.get_loadparm()
creds = credopts.get_credentials(lp)
if H is not None:
url = H
else:
url = lp.get("sam database")
samdb = SamDB(url=url, session_info=system_session(),
samdb = SamDB(url=H, session_info=system_session(),
credentials=creds, lp=lp)
domain_dn = SamDB.domain_dn(samdb)