Updated patches to work with the current trunk.
[rsync/rsync-patches.git] / netgroup-auth.diff
index f2a32e4..d118132 100644 (file)
@@ -3,20 +3,28 @@ and hosts deny.
 
 This patch still needs autoconf support for portability.
 
---- access.c   30 Jul 2003 06:12:27 -0000      1.13
-+++ access.c   25 Apr 2004 17:20:47 -0000
-@@ -22,11 +22,14 @@
-   */
+To use this patch, run these commands for a successful build:
+
+    patch -p1 <patches/netgroup-auth.diff
+    ./configure                           (optional if already run)
+    make
+
+based-on: 24079e988fc31af4eba56cd2701fdc5a4154980d
+diff --git a/access.c b/access.c
+--- a/access.c
++++ b/access.c
+@@ -19,11 +19,14 @@
+  */
  
  #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])
+       if (!host || !*host)
+               return 0;
++      if (*tok == '@' && tok[1])
 +              return innetgr(tok + 1, host, NULL, NULL);
-       return wildmatch(tok, host);
+       return iwildmatch(tok, host);
  }