X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fmingw%2Fdevice.c;h=e49ab9989fbe5aae3f1c9b538b2a40d63a49ef23;hp=4a962fe47808763f62bb87325f6a395e01302103;hb=ae50b0077e27c4c4d81a98da46c66865ffa069be;hpb=c15e8a96bf7e45adf750b7a36b0e8446ea049468;ds=sidebyside diff --git a/src/mingw/device.c b/src/mingw/device.c index 4a962fe4..e49ab998 100644 --- a/src/mingw/device.c +++ b/src/mingw/device.c @@ -1,5 +1,5 @@ /* - device.c -- Interaction with CIPE driver in a MinGW environment + device.c -- Interaction with Windows tap driver in a MinGW environment Copyright (C) 2002-2003 Ivo Timmermans , 2002-2003 Guus Sliepen @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: device.c,v 1.1.2.3 2003/07/28 21:54:03 guus Exp $ + $Id: device.c,v 1.1.2.4 2003/07/29 11:06:23 guus Exp $ */ #include "system.h" @@ -206,7 +206,7 @@ bool write_packet(vpn_packet_t *packet) packet->len, device_info); if(!WriteFile(device_fd, packet->data, packet->len, &lenout, NULL)) { - logger(LOG_ERR, "Error while writing to %s %s", device_info, device); + logger(LOG_ERR, _("Error while writing to %s %s"), device_info, device); return false; }