Use "use warnings" rather than -w on the #! line.
[rsync/rsync-patches.git] / netgroup-auth.diff
index e31ad3c..5c3bdef 100644 (file)
@@ -3,9 +3,16 @@ and hosts deny.
 
 This patch still needs autoconf support for portability.
 
---- old/access.c
-+++ new/access.c
-@@ -20,11 +20,14 @@
+To use this patch, run these commands for a successful build:
+
+    patch -p1 <patches/netgroup-auth.diff
+    ./configure                           (optional if already run)
+    make
+
+diff --git a/access.c b/access.c
+--- a/access.c
++++ b/access.c
+@@ -19,11 +19,14 @@
   */
  
  #include "rsync.h"
@@ -15,7 +22,7 @@ This patch still needs autoconf support for portability.
  {
        if (!host || !*host)
                return 0;
-+      if (*tok == '@' && tok[1])
++      if (*tok == '@' && tok[1])
 +              return innetgr(tok + 1, host, NULL, NULL);
        return wildmatch(tok, host);
  }