Promoted netgroup-auth to master.
authorWayne Davison <wayne@opencoder.net>
Mon, 13 Jul 2020 02:19:28 +0000 (19:19 -0700)
committerWayne Davison <wayne@opencoder.net>
Mon, 13 Jul 2020 02:19:28 +0000 (19:19 -0700)
netgroup-auth.diff [deleted file]

diff --git a/netgroup-auth.diff b/netgroup-auth.diff
deleted file mode 100644 (file)
index 64e01a5..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-This allows you to use the samba style @netgroup names in hosts allow
-and hosts deny.
-
-This patch still needs autoconf support for portability.
-
-To use this patch, run these commands for a successful build:
-
-    patch -p1 <patches/netgroup-auth.diff
-    ./configure                           (optional if already run)
-    make
-
-based-on: 194cee671d5e178f20c4494f41911fa8db942935
-diff --git a/access.c b/access.c
---- a/access.c
-+++ b/access.c
-@@ -20,6 +20,7 @@
- #include "rsync.h"
- #include "ifuncs.h"
-+#include <netdb.h>
- static int allow_forward_dns;
-@@ -34,6 +35,9 @@ static int match_hostname(const char **host_ptr, const char *addr, const char *t
-       if (!host || !*host)
-               return 0;
-+      if (*tok == '@' && tok[1])
-+              return innetgr(tok + 1, host, NULL, NULL);
-+
-       /* First check if the reverse-DNS-determined hostname matches. */
-       if (iwildmatch(tok, host))
-               return 1;