瀏覽代碼

Fix a typo in 5c3fc493.

whitequark 7 年之前
父節點
當前提交
5f16fc0032
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/iface/ethernet.rs

+ 1 - 1
src/iface/ethernet.rs

@@ -193,7 +193,7 @@ impl<'a, 'b, 'c, DeviceT: Device + 'a> Interface<'a, 'b, 'c, DeviceT> {
         let ipv4_packet = Ipv4Packet::new_checked(eth_frame.payload())?;
         let ipv4_repr = Ipv4Repr::parse(&ipv4_packet)?;
 
-        if ipv4_repr.src_addr.is_unicast() {
+        if !ipv4_repr.src_addr.is_unicast() {
             // Discard packets with non-unicast source addresses.
             return Err(Error::Malformed)
         }