diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-07-23 10:04:22 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2021-07-23 10:04:22 +0000 |
commit | 260f1feffc8d48f1181929ce12a9f2cb65a2a5cb (patch) | |
tree | d9400ae6e0c7bd5117c8c266832e9ec7510daa9f /src/minidentd/mgetuid-default.c | |
parent | 380757efd29c33ffefa8e0d1b8c2242278d034da (diff) | |
download | s6-networking-260f1feffc8d48f1181929ce12a9f2cb65a2a5cb.tar.xz |
Prepare for 2.5.0.0; remove minidentd
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/minidentd/mgetuid-default.c')
-rw-r--r-- | src/minidentd/mgetuid-default.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/minidentd/mgetuid-default.c b/src/minidentd/mgetuid-default.c deleted file mode 100644 index 5c9f1d2..0000000 --- a/src/minidentd/mgetuid-default.c +++ /dev/null @@ -1,16 +0,0 @@ -/* ISC license. */ - -#include <sys/types.h> -#include <stdint.h> -#include <errno.h> -#include <skalibs/ip46.h> -#include "mgetuid.h" - -uid_t mgetuid (ip46_t const *localaddr, uint16_t localport, ip46_t const *remoteaddr, uint16_t remoteport) -{ - (void)localaddr ; - (void)localport ; - (void)remoteaddr ; - (void)remoteport ; - return (errno = ENOSYS, -2) ; -} |