]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
priv: fix missing semi-colon
authorVincent Bernat <vincent@bernat.ch>
Sun, 31 May 2020 05:33:55 +0000 (07:33 +0200)
committerVincent Bernat <vincent@bernat.ch>
Sun, 31 May 2020 05:33:55 +0000 (07:33 +0200)
src/daemon/priv.c

index 551cac168437c58218ffdf407f2dc3b686bbaf66..05ee355fda7ff0b5736c50631d4194db201d7489 100644 (file)
@@ -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);