Skip to content

Commit

Permalink
Auto merge of rust-lang#13938 - ehuss:permissions-warning, r=weihanglo
Browse files Browse the repository at this point in the history
Fix warning about unused Permissions

This fixes an unused warning about the `Permissions` import on non-unix platforms.
  • Loading branch information
bors committed May 20, 2024
2 parents 3bbfe78 + cf78573 commit 84dc5dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cargo-util/src/paths.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use anyhow::{Context, Result};
use filetime::FileTime;
use std::env;
use std::ffi::{OsStr, OsString};
use std::fs::{self, File, Metadata, OpenOptions, Permissions};
use std::fs::{self, File, Metadata, OpenOptions};
use std::io;
use std::io::prelude::*;
use std::iter;
Expand Down Expand Up @@ -197,7 +197,7 @@ pub fn write_atomic<P: AsRef<Path>, C: AsRef<[u8]>>(path: P, contents: C) -> Res
let mask = u32::from(libc::S_IRWXU | libc::S_IRWXG | libc::S_IRWXO);
let mode = meta.permissions().mode() & mask;

Permissions::from_mode(mode)
std::fs::Permissions::from_mode(mode)
});

let mut tmp = TempFileBuilder::new()
Expand Down

0 comments on commit 84dc5dc

Please sign in to comment.