X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/7b4f48650ce711ca155b671f3b5210e239828d4e..951e826b75c4a4e6bc066e248d7489fb6eba6fde:/uidlist.c diff --git a/uidlist.c b/uidlist.c index a606065f..d9ca7a28 100644 --- a/uidlist.c +++ b/uidlist.c @@ -3,7 +3,7 @@ * * Copyright (C) 1996 Andrew Tridgell * Copyright (C) 1996 Paul Mackerras - * Copyright (C) 2004-2007 Wayne Davison + * Copyright (C) 2004-2008 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 @@ -26,7 +26,6 @@ #include "rsync.h" #include "io.h" -extern int verbose; extern int am_root; extern int preserve_uid; extern int preserve_gid; @@ -126,7 +125,7 @@ static int is_in_group(gid_t gid) } if (n == ngroups) gidset[ngroups++] = mygid; - if (verbose > 3) { + if (DEBUG_GTE(OWN, 2)) { int pos; char *gidbuf = new_array(char, ngroups*21+32); if (!gidbuf) @@ -152,7 +151,7 @@ static int is_in_group(gid_t gid) static gid_t mygid = GID_NONE; if (mygid == GID_NONE) { mygid = MY_GID(); - if (verbose > 3) + if (DEBUG_GTE(OWN, 2)) rprintf(FINFO, "process has gid %u\n", (unsigned)mygid); } return gid == mygid; @@ -167,7 +166,7 @@ static struct idlist *recv_add_uid(uid_t id, const char *name) node = add_to_list(&uidlist, id, name, id2, 0); - if (verbose > 3) { + if (DEBUG_GTE(OWN, 2)) { rprintf(FINFO, "uid %u(%s) maps to %u\n", (unsigned)id, name ? name : "", (unsigned)id2); } @@ -184,7 +183,7 @@ static struct idlist *recv_add_gid(gid_t id, const char *name) node = add_to_list(&gidlist, id, name, id2, !am_root && !is_in_group(id2) ? FLAG_SKIP_GROUP : 0); - if (verbose > 3) { + if (DEBUG_GTE(OWN, 2)) { rprintf(FINFO, "gid %u(%s) maps to %u\n", (unsigned)id, name ? name : "", (unsigned)id2); }