My improved version of a connection-timeout patch.
[rsync-patches.git] / netgroup-auth.diff
index d41d428f241b15da50c043d9d793bcdc89664a9a..8732782d3d6b11254bd4c6d1b2697a309cc615da 100644 (file)
@@ -3,20 +3,25 @@ and hosts deny.
 
 This patch still needs autoconf support for portability.
 
---- orig/access.c      2005-02-14 02:45:09
-+++ 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 <patches/netgroup-auth.diff
+    ./configure                           (optional if already run)
+    make
+
+--- old/access.c
++++ new/access.c
+@@ -20,11 +20,14 @@
+  */
  
  #include "rsync.h"
 +#include <netdb.h>
  
  static int match_hostname(char *host, 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);
  }