Fixed a failing hunk.
[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 --- orig/access.c       2005-01-15 20:06:58
7 +++ access.c    2005-01-15 20:09:59
8 @@ -22,12 +22,15 @@
9    */
10  
11  #include "rsync.h"
12 +#include <netdb.h>
13  
14  
15  static int match_hostname(char *host, char *tok)
16  {
17         if (!host || !*host)
18                 return 0;
19 +       if (*tok == '@' && tok[1])
20 +               return innetgr(tok + 1, host, NULL, NULL);
21         return wildmatch(tok, host);
22  }
23