X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/a7219d2067fb9923061cfe7da56477d85e03d51a..5214a41bbae94607b196b199b483710e1babf292:/netgroup-auth.diff diff --git a/netgroup-auth.diff b/netgroup-auth.diff index e135646..d118132 100644 --- a/netgroup-auth.diff +++ b/netgroup-auth.diff @@ -3,21 +3,28 @@ and hosts deny. This patch still needs autoconf support for portability. ---- orig/access.c 2005-01-28 19:08:19 -+++ 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) + static int match_hostname(const char *host, const 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); + return iwildmatch(tok, host); }