Got rid of a superfluous extern.
[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
b3593e7c
WD
8@@ -20,11 +20,14 @@
9 */
1b7984b2
WD
10
11 #include "rsync.h"
12+#include <netdb.h>
13
1b7984b2
WD
14 static int match_hostname(char *host, char *tok)
15 {
e405772a
WD
16 if (!host || !*host)
17 return 0;
1b7984b2
WD
18+ if (*tok == '@' && tok[1])
19+ return innetgr(tok + 1, host, NULL, NULL);
20 return wildmatch(tok, host);
21 }
22