X-Git-Url: http://git.samba.org/?a=blobdiff_plain;f=netgroup-auth.diff;h=ac1087f1a989fd2ca2310e34a2a624be56aa4ec4;hb=refs%2Fheads%2Fb3.0.x;hp=5b1c64ba9f66569a8df9329252928568c5631b17;hpb=9a7eef964a2e3389ffd3537302f80ca42cfe9239;p=rsync.git%2Fpatches.git diff --git a/netgroup-auth.diff b/netgroup-auth.diff index 5b1c64b..ac1087f 100644 --- a/netgroup-auth.diff +++ b/netgroup-auth.diff @@ -3,20 +3,27 @@ and hosts deny. This patch still needs autoconf support for portability. ---- old/access.c -+++ new/access.c -@@ -22,12 +22,15 @@ - */ +To use this patch, run these commands for a successful build: + + patch -p1 - static int match_hostname(char *host, char *tok) { if (!host || !*host) return 0; -+ if (*tok == '@' && tok[1]) ++ if (*tok == '@' && tok[1]) + return innetgr(tok + 1, host, NULL, NULL); return wildmatch(tok, host); }