Fix indentation oops.

This commit is contained in:
Pedro F. Giffuni 2016-04-03 14:40:54 +00:00
parent 86d9f8fc65
commit ae26eab161

View File

@ -896,12 +896,12 @@ linux_utimensat(struct thread *td, struct linux_utimensat_args *args)
}
timesp = times;
if (times[0].tv_nsec == UTIME_OMIT &&
times[1].tv_nsec == UTIME_OMIT)
/* This breaks POSIX, but is what the Linux kernel does
* _on purpose_ (documented in the man page for utimensat(2)),
* so we must follow that behaviour. */
return (0);
if (times[0].tv_nsec == UTIME_OMIT &&
times[1].tv_nsec == UTIME_OMIT)
return (0);
}
if (args->pathname != NULL)