From e405772a3fc44f29fbab7efa3628759ae804f7d8 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 15 Jan 2005 20:11:17 +0000 Subject: [PATCH] Fixed a failing hunk. --- netgroup-auth.diff | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/netgroup-auth.diff b/netgroup-auth.diff index 1769972..2865908 100644 --- a/netgroup-auth.diff +++ b/netgroup-auth.diff @@ -3,9 +3,9 @@ and hosts deny. This patch still needs autoconf support for portability. ---- orig/access.c 2004-09-25 16:57:35 -+++ access.c 2004-04-25 17:20:47 -@@ -22,11 +22,14 @@ +--- orig/access.c 2005-01-15 20:06:58 ++++ access.c 2005-01-15 20:09:59 +@@ -22,12 +22,15 @@ */ #include "rsync.h" @@ -14,7 +14,8 @@ This patch still needs autoconf support for portability. static int match_hostname(char *host, char *tok) { - if (!host || !*host) return 0; + if (!host || !*host) + return 0; + if (*tok == '@' && tok[1]) + return innetgr(tok + 1, host, NULL, NULL); return wildmatch(tok, host); -- 2.34.1