Skip to content

Commit f776771

Browse files
committed
.
1 parent fa01cf4 commit f776771

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

crates/pedm-simulator/src/main.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn main() -> anyhow::Result<()> {
3333
match lookup_account_by_name(&account_username) {
3434
Ok(account) => {
3535
let rights = enumerate_account_rights(&account.sid)
36-
.with_context(|| format!("enumerate account rights for {account_username:?}"));
36+
.with_context(|| format!("enumerate account rights for {account_username:?}"))?;
3737
let has_create_token_right = rights.iter().any(|right| right == u16cstr!("SeCreateTokenPrivilege"));
3838

3939
if expect_elevation {
@@ -70,7 +70,9 @@ fn main() -> anyhow::Result<()> {
7070
if e.code().0 == 0x80070534 {
7171
println!("Got the 'no mapping' error; continuing...")
7272
} else {
73-
return Err(anyhow::Error::new(e), "an unexpected error");
73+
return Err(anyhow::Error::new(e).context(format!(
74+
"unexpected error when looking up the account for {account_username:?}"
75+
)));
7476
}
7577
}
7678
}

0 commit comments

Comments
 (0)