X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/2df20057e34db58c8caa37def9321e33acfa56fd..f8605c5b89720a09b8aa0d5e7aa3ea27b1ebbf4f:/uidlist.c diff --git a/uidlist.c b/uidlist.c index b27726b0..7e8cbd7b 100644 --- a/uidlist.c +++ b/uidlist.c @@ -3,7 +3,7 @@ * * Copyright (C) 1996 Andrew Tridgell * Copyright (C) 1996 Paul Mackerras - * Copyright (C) 2004-2008 Wayne Davison + * Copyright (C) 2004-2009 Wayne Davison * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -179,7 +179,7 @@ static struct idlist *recv_add_id(struct idlist **idlist_ptr, struct idlist *idm if (node) id2 = node->id2; else if (*name && id) { - if (idmap == uidmap) { + if (idlist_ptr == &uidlist) { uid_t uid; id2 = name_to_uid(name, &uid) ? uid : id; } else { @@ -189,12 +189,12 @@ static struct idlist *recv_add_id(struct idlist **idlist_ptr, struct idlist *idm } else id2 = id; - flag = idmap == gidmap && !am_root && !is_in_group(id2) ? FLAG_SKIP_GROUP : 0; + flag = idlist_ptr == &gidlist && !am_root && !is_in_group(id2) ? FLAG_SKIP_GROUP : 0; node = add_to_list(idlist_ptr, id, *name ? name : NULL, id2, flag); if (DEBUG_GTE(OWN, 2)) { rprintf(FINFO, "%sid %u(%s) maps to %u\n", - idmap == uidmap ? "u" : "g", + idlist_ptr == &uidlist ? "u" : "g", (unsigned)id, name, (unsigned)id2); }