Changed the syntax that specifies a merge file. It is now this:
[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
a60267ab 6--- orig/access.c 2004-09-25 16:57:35
13bed3dd 7+++ access.c 2004-04-25 17:20:47
1b7984b2
WD
8@@ -22,11 +22,14 @@
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) return 0;
18+ if (*tok == '@' && tok[1])
19+ return innetgr(tok + 1, host, NULL, NULL);
20 return wildmatch(tok, host);
21 }
22