X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/9a7eef964a2e3389ffd3537302f80ca42cfe9239..d1a75c9f4e1157ff6dbe364e76cd3b30ae178e52:/netgroup-auth.diff diff --git a/netgroup-auth.diff b/netgroup-auth.diff index 5b1c64b..8732782 100644 --- a/netgroup-auth.diff +++ b/netgroup-auth.diff @@ -3,20 +3,25 @@ and hosts deny. This patch still needs autoconf support for portability. +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); }