From: Wayne Davison Date: Mon, 21 May 2007 03:20:39 +0000 (+0000) Subject: Fixed a thinko in the calling of recv_add_gid(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/fe8d61e5d5e9fc9dcb7787558f3178d482fc5784 Fixed a thinko in the calling of recv_add_gid(). --- diff --git a/uidlist.c b/uidlist.c index 30bb6c58..dea3804e 100644 --- a/uidlist.c +++ b/uidlist.c @@ -227,7 +227,7 @@ gid_t match_gid(gid_t gid, uint16 *flags_ptr) break; } if (!list) - list = recv_add_gid(gid, flags_ptr); + list = recv_add_gid(gid, NULL); last = list; }