X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fmingw%2Fdevice.c;fp=src%2Fmingw%2Fdevice.c;h=132ef8f796657010726f249f9e6374e8ce371297;hp=c0f02f2a870a8ec1efbe9c1c75dcfbda28449150;hb=a227843b739d279b63adcf3736ebb03d856080c4;hpb=5dde6461a321ee47b06e33f8203f2acf00a31a51 diff --git a/src/mingw/device.c b/src/mingw/device.c index c0f02f2a..132ef8f7 100644 --- a/src/mingw/device.c +++ b/src/mingw/device.c @@ -106,8 +106,6 @@ bool setup_device(void) { .ai_flags = 0, }; - cp(); - get_config_string(lookup_config(config_tree, "Device"), &device); get_config_string(lookup_config(config_tree, "Interface"), &iface); @@ -220,8 +218,6 @@ bool setup_device(void) { } void close_device(void) { - cp(); - CloseHandle(device_handle); free(device); @@ -236,8 +232,6 @@ bool write_packet(vpn_packet_t *packet) { long lenout; OVERLAPPED overlapped = {0}; - cp(); - ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"), packet->len, device_info); @@ -252,8 +246,6 @@ bool write_packet(vpn_packet_t *packet) { } void dump_device_stats(void) { - cp(); - logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device); logger(LOG_DEBUG, _(" total bytes in: %10d"), device_total_in); logger(LOG_DEBUG, _(" total bytes out: %10d"), device_total_out);