File tree 1 file changed +4
-2
lines changed
crates/pedm-simulator/src
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ fn main() -> anyhow::Result<()> {
33
33
match lookup_account_by_name ( & account_username) {
34
34
Ok ( account) => {
35
35
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:?}" ) ) ? ;
37
37
let has_create_token_right = rights. iter ( ) . any ( |right| right == u16cstr ! ( "SeCreateTokenPrivilege" ) ) ;
38
38
39
39
if expect_elevation {
@@ -70,7 +70,9 @@ fn main() -> anyhow::Result<()> {
70
70
if e. code ( ) . 0 == 0x80070534 {
71
71
println ! ( "Got the 'no mapping' error; continuing..." )
72
72
} 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
+ ) ) ) ;
74
76
}
75
77
}
76
78
}
You can’t perform that action at this time.
0 commit comments