replace tools::vec with proxmox::tools::vec

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller
2019-07-01 11:03:25 +02:00
parent d0162d53d3
commit f35197f449
6 changed files with 8 additions and 105 deletions

View File

@ -28,7 +28,7 @@ use nix::sys::stat::Mode;
use nix::errno::Errno;
use nix::sys::stat::FileStat;
use crate::tools::vec;
use proxmox::tools::vec;
/// The format requires to build sorted directory lookup tables in
/// memory, so we restrict the number of allowed entries to limit

View File

@ -22,8 +22,8 @@ use nix::errno::Errno;
use nix::NixPath;
use proxmox::tools::io::ReadExt;
use proxmox::tools::vec;
use crate::tools::vec;
use crate::tools::fs;
use crate::tools::acl;
use crate::tools::xattr;