Fixed a bug in rsync_acl_extended_parts_equal() where it could
[rsync/rsync-patches.git] / netgroup-auth.diff
CommitLineData
1b7984b2
WD
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
9a7eef96
WD
6--- old/access.c
7+++ new/access.c
e405772a 8@@ -22,12 +22,15 @@
1b7984b2
WD
9 */
10
11 #include "rsync.h"
12+#include <netdb.h>
13
14
15 static int match_hostname(char *host, char *tok)
16 {
e405772a
WD
17 if (!host || !*host)
18 return 0;
1b7984b2
WD
19+ if (*tok == '@' && tok[1])
20+ return innetgr(tok + 1, host, NULL, NULL);
21 return wildmatch(tok, host);
22 }
23