From 6ff695c99c9485aa3d621f649747cce9248cc907 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Fri, 3 Sep 2021 09:49:21 +0200 Subject: [PATCH] Drop useless comment Signed-off-by: Joachim Wiberg --- accept-guard.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/accept-guard.c b/accept-guard.c index 35a8ed9..18a9782 100644 --- a/accept-guard.c +++ b/accept-guard.c @@ -224,7 +224,6 @@ int accept(int socket, struct sockaddr *addr, socklen_t *addrlen) rc = org_accept(socket, addr, addrlen); if (rc != -1) { - /* Parse configuration from environment variable. */ parse_acl(); if (!iface_allowed(rc, 0)) { @@ -277,7 +276,6 @@ static ssize_t do_recv(int sd, int rc, int flags, int ifindex) if (rc == -1 || (flags & MSG_PEEK)) goto done; - /* Parse configuration from environment variable. */ parse_acl(); if (!iface_allowed(sd, ifindex)) {