Removed last gettext function.
This commit is contained in:
parent
3282375f4d
commit
430c90412c
3 changed files with 3 additions and 5 deletions
|
@ -85,8 +85,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
#define getpid() GetCurrentProcessId()
|
#define getpid() GetCurrentProcessId()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "gettext.h"
|
|
||||||
|
|
||||||
/* This version of `getopt' appears to the caller like standard Unix `getopt'
|
/* This version of `getopt' appears to the caller like standard Unix `getopt'
|
||||||
but it behaves differently for the user, since it allows the user
|
but it behaves differently for the user, since it allows the user
|
||||||
to intersperse the options with the other arguments.
|
to intersperse the options with the other arguments.
|
||||||
|
|
|
@ -209,7 +209,7 @@ bool read_packet(vpn_packet_t *packet) {
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ifdebug(TRAFFIC) logger(LOG_ERR,
|
ifdebug(TRAFFIC) logger(LOG_ERR,
|
||||||
_ ("Unknown IP version %d while reading packet from %s %s"),
|
"Unknown IP version %d while reading packet from %s %s",
|
||||||
packet->data[14] >> 4, device_info, device);
|
packet->data[14] >> 4, device_info, device);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -240,7 +240,7 @@ bool read_packet(vpn_packet_t *packet) {
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ifdebug(TRAFFIC) logger(LOG_ERR,
|
ifdebug(TRAFFIC) logger(LOG_ERR,
|
||||||
_ ("Unknown address family %x while reading packet from %s %s"),
|
"Unknown address family %x while reading packet from %s %s",
|
||||||
ntohl(type), device_info, device);
|
ntohl(type), device_info, device);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -131,7 +131,7 @@ bool read_packet(vpn_packet_t *packet) {
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ifdebug(TRAFFIC) logger(LOG_ERR,
|
ifdebug(TRAFFIC) logger(LOG_ERR,
|
||||||
_ ("Unknown IP version %d while reading packet from %s %s"),
|
"Unknown IP version %d while reading packet from %s %s",
|
||||||
packet->data[14] >> 4, device_info, device);
|
packet->data[14] >> 4, device_info, device);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue