Displaying 3 results from an estimated 3 matches for "item_report_owner".
2005 Jul 26
1
itemize() needs to use CHMOD_BITS (patch)
...eserve_perms && file->mode != st->st_mode)
+ if (preserve_perms && (st->st_mode & CHMOD_BITS)
+ != (file->mode & CHMOD_BITS))
iflags |= ITEM_REPORT_PERMS;
if (preserve_uid && am_root && file->uid != st->st_uid)
iflags |= ITEM_REPORT_OWNER;
--
Roderick Schertler
roderick@argon.org
2006 Jun 02
3
[PATCH] --omit-dir-changes, qsort<>mergesort issues
...amp; CHMOD_BITS))
iflags |= ITEM_REPORT_PERMS;
- if (preserve_uid && am_root && file->uid != st->st_uid)
+ if (preserve_uid && am_root && file->uid != st->st_uid
+ && !(S_ISDIR(st->st_mode) && omit_dir_changes))
iflags |= ITEM_REPORT_OWNER;
- if (preserve_gid && file->gid != GID_NONE
- && st->st_gid != file->gid)
+ if (preserve_gid && file->gid != GID_NONE && st->st_gid != file->gid
+ && !(S_ISDIR(st->st_mode) && omit_dir_changes))
iflags |= ITEM_REP...
2007 Sep 22
0
rsync build on IA64 using icc
...10: conversion from "int" to "char" may lose significant bits
n[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p';
^
log.c(607): remark #810: conversion from "int" to "char" may lose significant bits
n[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o';
^
log.c(608): remark #810: conversion from "int" to "char" may lose significant bits
n[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g';
^
log.c(613): remark #810: conversion from "int" to "...