Updated patches to work with the current trunk.
[rsync/rsync-patches.git] / netgroup-auth.diff
index 5c3bdef..bd54f84 100644 (file)
@@ -10,6 +10,7 @@ To use this patch, run these commands for a successful build:
     make
 
 diff --git a/access.c b/access.c
+index 9a023de..c6d9f3c 100644
 --- a/access.c
 +++ b/access.c
 @@ -19,11 +19,14 @@
@@ -18,12 +19,12 @@ diff --git a/access.c b/access.c
  #include "rsync.h"
 +#include <netdb.h>
  
- 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])
 +              return innetgr(tok + 1, host, NULL, NULL);
-       return wildmatch(tok, host);
+       return iwildmatch(tok, host);
  }