Updated patches to work with the current trunk.
[rsync/rsync-patches.git] / netgroup-auth.diff
... / ...
CommitLineData
1This allows you to use the samba style @netgroup names in hosts allow
2and hosts deny.
3
4This patch still needs autoconf support for portability.
5
6To use this patch, run these commands for a successful build:
7
8 patch -p1 <patches/netgroup-auth.diff
9 ./configure (optional if already run)
10 make
11
12based-on: a01e3b490eb36ccf9e704840e1b6683dab867550
13diff --git a/access.c b/access.c
14--- a/access.c
15+++ b/access.c
16@@ -19,11 +19,14 @@
17 */
18
19 #include "rsync.h"
20+#include <netdb.h>
21
22 static int match_hostname(const char *host, const char *tok)
23 {
24 if (!host || !*host)
25 return 0;
26+ if (*tok == '@' && tok[1])
27+ return innetgr(tok + 1, host, NULL, NULL);
28 return iwildmatch(tok, host);
29 }
30