X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/a5e0f697df2b980931fa873cbaadc949275a6b86..0ef5abcbbb95298fa9faf1d3eb275a9e76e1d951:/netgroup-auth.diff diff --git a/netgroup-auth.diff b/netgroup-auth.diff index d41d428..5c3bdef 100644 --- a/netgroup-auth.diff +++ b/netgroup-auth.diff @@ -3,20 +3,26 @@ and hosts deny. This patch still needs autoconf support for portability. ---- orig/access.c 2005-02-14 02:45:09 -+++ access.c 2005-01-15 20:09:59 -@@ -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); }