Btrfs-progs: allow to receive to relative directories

Signed-off-by: Stefan Behrens <sbehrens@giantdisaster.de>
This commit is contained in:
Stefan Behrens 2013-04-09 19:08:44 +02:00 committed by David Sterba
parent e6e1209254
commit 913372adbd

View File

@ -756,7 +756,7 @@ static int process_utimes(const char *path, struct timespec *at,
tv[0] = *at; tv[0] = *at;
tv[1] = *mt; tv[1] = *mt;
ret = utimensat(-1, full_path, tv, AT_SYMLINK_NOFOLLOW); ret = utimensat(AT_FDCWD, full_path, tv, AT_SYMLINK_NOFOLLOW);
if (ret < 0) { if (ret < 0) {
ret = -errno; ret = -errno;
fprintf(stderr, "ERROR: utimes %s failed. %s\n", fprintf(stderr, "ERROR: utimes %s failed. %s\n",