fmt: fix the formatting
This commit is contained in:
parent
4e3713fb39
commit
9238459180
1 changed files with 1 additions and 4 deletions
|
@ -56,10 +56,7 @@ pub async fn submit(mut req: Request<State>) -> tide::Result {
|
|||
let (rs, _res) = ldap.search(&dn, Scope::Base, "(objectClass=*)", vec!["userPassword", "memberOf"])?.success()?;
|
||||
if !rs.is_empty() {
|
||||
let tmp = SearchEntry::construct(rs[0].clone());
|
||||
if tmp.attrs.contains_key("userPassword")
|
||||
&& !tmp.attrs["userPassword"].is_empty()
|
||||
&& tmp.attrs["userPassword"][0].starts_with("{SSHA512}")
|
||||
{
|
||||
if tmp.attrs.contains_key("userPassword") && !tmp.attrs["userPassword"].is_empty() && tmp.attrs["userPassword"][0].starts_with("{SSHA512}") {
|
||||
pw_keep_same = true;
|
||||
}
|
||||
if tmp.attrs.contains_key("memberOf") {
|
||||
|
|
Loading…
Reference in a new issue