Oops! Reference to write_n() removed and changed into neat write() call.
authorGuus Sliepen <guus@tinc-vpn.org>
Fri, 28 Apr 2000 11:33:25 +0000 (11:33 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Fri, 28 Apr 2000 11:33:25 +0000 (11:33 +0000)
src/net.c

index fdedf55..147b399 100644 (file)
--- a/src/net.c
+++ b/src/net.c
@@ -117,7 +117,7 @@ cp
   do_decrypt((real_packet_t*)packet, &vp, cl->key);
   add_mac_addresses(&vp);
 
-  if((lenin = write_n(tap_fd, &vp, vp.len + 2)) < 0)
+  if((lenin = write(tap_fd, &vp, vp.len + sizeof(vp.len))) < 0)
     syslog(LOG_ERR, "Can't write to tap device: %m");
   else
     total_tap_out += lenin;