X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fraw_socket_device.c;h=f4ed6941bbafc7af01c62f362cf214010657994f;hp=92f07c6266e248708d70b5d870b030af20bca674;hb=061c3fcaf9c63978009dc2707071f8daef8751b2;hpb=afda1d91ae290ac2aa2a45d07fa6838b3159da39 diff --git a/src/raw_socket_device.c b/src/raw_socket_device.c index 92f07c62..f4ed6941 100644 --- a/src/raw_socket_device.c +++ b/src/raw_socket_device.c @@ -33,7 +33,7 @@ #include "xalloc.h" #if defined(PF_PACKET) && defined(ETH_P_ALL) && defined(AF_PACKET) && defined(SIOCGIFINDEX) -static char *device_info; +static const char *device_info = "raw_socket"; static uint64_t device_total_in = 0; static uint64_t device_total_out = 0; @@ -50,8 +50,6 @@ static bool setup_device(void) { device = xstrdup(iface); } - device_info = "raw socket"; - if((device_fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL))) < 0) { logger(LOG_ERR, "Could not open %s: %s", device_info, strerror(errno));