X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/03019e41fc3299020c8acdda06cf57a1e2c57a25..7170ca8dba0a407cd0c91b41b48163c7b682abb1:/netgroup-auth.diff diff --git a/netgroup-auth.diff b/netgroup-auth.diff index 5062a82..d6e311f 100644 --- a/netgroup-auth.diff +++ b/netgroup-auth.diff @@ -9,20 +9,22 @@ To use this patch, run these commands for a successful build: ./configure (optional if already run) make ---- old/access.c -+++ new/access.c -@@ -20,11 +20,14 @@ +based-on: 181c9faf928faad08ef095f4667afe460ec3bef6 +diff --git a/access.c b/access.c +--- a/access.c ++++ b/access.c +@@ -19,11 +19,14 @@ */ #include "rsync.h" +#include - 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); }