Fix alignment issue on 64-bit. Solution from Steve Ortiz.
[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
03019e41
WD
6To 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
c1ff70aa 12based-on: a01e3b490eb36ccf9e704840e1b6683dab867550
cc3e685d
WD
13diff --git a/access.c b/access.c
14--- a/access.c
15+++ b/access.c
16@@ -19,11 +19,14 @@
b3593e7c 17 */
1b7984b2
WD
18
19 #include "rsync.h"
20+#include <netdb.h>
21
fc557362 22 static int match_hostname(const char *host, const char *tok)
1b7984b2 23 {
e405772a
WD
24 if (!host || !*host)
25 return 0;
8871c12a 26+ if (*tok == '@' && tok[1])
1b7984b2 27+ return innetgr(tok + 1, host, NULL, NULL);
fc557362 28 return iwildmatch(tok, host);
1b7984b2
WD
29 }
30