* Pass --use-atime / --max-atime to the daemon.

This commit is contained in:
Eelco Dolstra 2008-12-16 12:23:35 +00:00
parent 6f6bb1fdea
commit 60ec75048a
3 changed files with 9 additions and 1 deletions

View file

@ -452,6 +452,10 @@ static void performOp(unsigned int clientVersion,
options.ignoreLiveness = readInt(from);
options.maxFreed = readLongLong(from);
options.maxLinks = readInt(from);
if (GET_PROTOCOL_MINOR(clientVersion) >= 5) {
options.useAtime = readInt(from);
options.maxAtime = readInt(from);
}
GCResults results;