Skip to content
Snippets Groups Projects
Commit 033a7754 authored by GrayJack's avatar GrayJack
Browse files

Fix the lastlogx PartialEq impl

parent 5d3c5b9d
No related branches found
No related tags found
No related merge requests found
......@@ -481,8 +481,12 @@ cfg_if! {
fn eq(&self, other: &lastlogx) -> bool {
self.ll_tv == other.ll_tv
&& self.ll_line == other.ll_line
&& self.ll_host == other.ll_host
&& self.ll_ss == other.ll_ss
&& self
.ll_host
.iter()
.zip(other.ll_host.iter())
.all(|(a,b)| a == b)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment