From: Vincent Bernat Date: Sun, 31 May 2020 05:33:55 +0000 (+0200) Subject: priv: fix missing semi-colon X-Git-Tag: 1.0.6~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=262743857bb123678e6d7be54df030e22343bcb3;p=thirdparty%2Flldpd.git priv: fix missing semi-colon --- diff --git a/src/daemon/priv.c b/src/daemon/priv.c index 551cac16..05ee355f 100644 --- a/src/daemon/priv.c +++ b/src/daemon/priv.c @@ -256,7 +256,7 @@ asroot_iface_init() must_read(PRIV_PRIVILEGED, &ifindex, sizeof(ifindex)); must_read(PRIV_PRIVILEGED, &name, sizeof(name)); name[sizeof(name) - 1] = '\0'; - must_read(PRIV_PRIVILEGED, &proto, sizeof(proto)) + must_read(PRIV_PRIVILEGED, &proto, sizeof(proto)); TRACE(LLDPD_PRIV_INTERFACE_INIT(name)); rc = asroot_iface_init_os(ifindex, name, &fd, proto);