clippy: rewrite comparison chains

chunk_stream one can be collapsed, since split == split_to with at set
to buffer.len() anyway.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2021-01-20 17:23:50 +01:00 committed by Wolfgang Bumiller
parent 81b2a87232
commit 43313c2ee7
4 changed files with 10 additions and 8 deletions

View File

@ -185,7 +185,9 @@ impl BackupEnvironment {
if size > data.chunk_size { if size > data.chunk_size {
bail!("fixed writer '{}' - got large chunk ({} > {}", data.name, size, data.chunk_size); bail!("fixed writer '{}' - got large chunk ({} > {}", data.name, size, data.chunk_size);
} else if size < data.chunk_size { }
if size < data.chunk_size {
data.small_chunk_count += 1; data.small_chunk_count += 1;
if data.small_chunk_count > 1 { if data.small_chunk_count > 1 {
bail!("fixed writer '{}' - detected multiple end chunks (chunk size too small)"); bail!("fixed writer '{}' - detected multiple end chunks (chunk size too small)");

View File

@ -98,11 +98,8 @@ where
fn poll_next(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Result<BytesMut, S::Error>>> { fn poll_next(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Result<BytesMut, S::Error>>> {
let this = self.get_mut(); let this = self.get_mut();
loop { loop {
if this.buffer.len() == this.chunk_size { if this.buffer.len() >= this.chunk_size {
return Poll::Ready(Some(Ok(this.buffer.split()))); return Poll::Ready(Some(Ok(this.buffer.split_to(this.chunk_size))));
} else if this.buffer.len() > this.chunk_size {
let result = this.buffer.split_to(this.chunk_size);
return Poll::Ready(Some(Ok(result)));
} }
match ready!(Pin::new(&mut this.input).try_poll_next(cx)) { match ready!(Pin::new(&mut this.input).try_poll_next(cx)) {

View File

@ -293,6 +293,7 @@ impl <R: BufRead> NetworkParser<R> {
} }
} }
#[allow(clippy::comparison_chain)]
if let Some(netmask) = netmask { if let Some(netmask) = netmask {
if address_list.len() > 1 { if address_list.len() > 1 {
bail!("unable to apply netmask to multiple addresses (please use cidr notation)"); bail!("unable to apply netmask to multiple addresses (please use cidr notation)");

View File

@ -196,9 +196,11 @@ impl<'a> ACLEntry<'a> {
for &perm in &[ACL_READ, ACL_WRITE, ACL_EXECUTE] { for &perm in &[ACL_READ, ACL_WRITE, ACL_EXECUTE] {
res = unsafe { acl_get_perm(permset, perm) }; res = unsafe { acl_get_perm(permset, perm) };
if res < 0 { if res < 0 {
return Err(Errno::last()); return Err(Errno::last());
} else if res > 0 { }
if res == 1 {
permissions |= perm as u64; permissions |= perm as u64;
} }
} }