Remove debug mess

This commit is contained in:
Emīls Piņķis 2018-08-25 18:32:01 +01:00
parent fe84586bcd
commit 9e838f3901
2 changed files with 2 additions and 9 deletions

View File

@ -416,11 +416,7 @@ mod tests {
create_pipe_with_permissions(SecurityAttributes::empty()).expect("failed with no attributes");
create_pipe_with_permissions(SecurityAttributes::allow_everyone_create().unwrap())
.expect("failed with attributes for creating");
// create_pipe_with_permissions(SecurityAttributes::allow_everyone_create().unwrap())
// .expect("failed with attributes for creating");
// create_pipe_with_permissions(SecurityAttributes::allow_everyone_connect().unwrap())
// .expect("failed with attributes for connecting");
// create_pipe_with_permissions(SecurityAttributes::allow_everyone_connect().unwrap())
// .expect("failed with attributes for connecting");
create_pipe_with_permissions(SecurityAttributes::allow_everyone_connect().unwrap())
.expect("failed with attributes for connecting");
}
}

View File

@ -237,10 +237,7 @@ impl InnerAttributes {
let mut entries = vec![everyone_ace];
attributes.acl = Acl::new(&mut entries)?;
attributes.descriptor.set_dacl(&attributes.acl)?;
// acl.acl_ptr = ptr::null_mut();
println!("ayy lmao");
Ok(attributes)
}