The patches for 3.0.0.
[rsync-patches.git] / netgroup-auth.diff
1 This allows you to use the samba style @netgroup names in hosts allow
2 and hosts deny.
3
4 This patch still needs autoconf support for portability.
5
6 To 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
12 diff --git a/access.c b/access.c
13 --- a/access.c
14 +++ b/access.c
15 @@ -19,11 +19,14 @@
16   */
17  
18  #include "rsync.h"
19 +#include <netdb.h>
20  
21  static int match_hostname(char *host, char *tok)
22  {
23         if (!host || !*host)
24                 return 0;
25 +       if (*tok == '@' && tok[1])
26 +               return innetgr(tok + 1, host, NULL, NULL);
27         return wildmatch(tok, host);
28  }
29