chiark / gitweb /
Use the new mLib macros for discarding uninteresting error codes.
[tripe] / server / tun-bsd.c
index 2c872997f7a79e82ea70b522f24814060f86f1e8..219b9934733a5ef56075f5123c2b46ac79a7c816 100644 (file)
@@ -123,7 +123,7 @@ static void t_inject(tunnel *t, buf *b)
     trace(T_TUNNEL, "tun-bsd: inject decrypted packet");
     trace_block(T_PACKET, "tun-bsd: packet contents", BBASE(b), BLEN(b));
   })
-  IGNORE(write(t->f.fd, BBASE(b), BLEN(b)));
+  DISCARD(write(t->f.fd, BBASE(b), BLEN(b)));
 }
 
 /* --- @t_destroy@ --- *