struct l_utimbuf lut;
char *fname;
int error;
- bool convpath;
-
- convpath = LUSECONVPATH(td);
- if (convpath)
- LCONVPATHEXIST(td, args->fname, &fname);
if (args->times) {
- if ((error = copyin(args->times, &lut, sizeof lut))) {
- if (convpath)
- LFREEPATH(fname);
+ if ((error = copyin(args->times, &lut, sizeof lut)) != 0)
return (error);
- }
tv[0].tv_sec = lut.l_actime;
tv[0].tv_usec = 0;
tv[1].tv_sec = lut.l_modtime;
} else
tvp = NULL;
- if (!convpath) {
+ if (!LUSECONVPATH(td)) {
error = kern_utimesat(td, AT_FDCWD, args->fname, UIO_USERSPACE,
tvp, UIO_SYSSPACE);
} else {
+ LCONVPATHEXIST(td, args->fname, &fname);
error = kern_utimesat(td, AT_FDCWD, fname, UIO_SYSSPACE, tvp,
UIO_SYSSPACE);
LFREEPATH(fname);
struct timeval tv[2], *tvp = NULL;
char *fname;
int error;
- bool convpath;
-
- convpath = LUSECONVPATH(td);
- if (convpath)
- LCONVPATHEXIST(td, args->fname, &fname);
if (args->tptr != NULL) {
- if ((error = copyin(args->tptr, ltv, sizeof ltv))) {
- LFREEPATH(fname);
+ if ((error = copyin(args->tptr, ltv, sizeof ltv)) != 0)
return (error);
- }
tv[0].tv_sec = ltv[0].tv_sec;
tv[0].tv_usec = ltv[0].tv_usec;
tv[1].tv_sec = ltv[1].tv_sec;
tvp = tv;
}
- if (!convpath) {
+ if (!LUSECONVPATH(td)) {
error = kern_utimesat(td, AT_FDCWD, args->fname, UIO_USERSPACE,
tvp, UIO_SYSSPACE);
} else {
+ LCONVPATHEXIST(td, args->fname, &fname);
error = kern_utimesat(td, AT_FDCWD, fname, UIO_SYSSPACE,
tvp, UIO_SYSSPACE);
LFREEPATH(fname);
struct timeval tv[2], *tvp = NULL;
char *fname;
int error, dfd;
- bool convpath;
- convpath = LUSECONVPATH(td);
dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
- if (convpath)
- LCONVPATHEXIST_AT(td, args->filename, &fname, dfd);
if (args->utimes != NULL) {
- if ((error = copyin(args->utimes, ltv, sizeof ltv))) {
- if (convpath)
- LFREEPATH(fname);
+ if ((error = copyin(args->utimes, ltv, sizeof ltv)) != 0)
return (error);
- }
tv[0].tv_sec = ltv[0].tv_sec;
tv[0].tv_usec = ltv[0].tv_usec;
tv[1].tv_sec = ltv[1].tv_sec;
tvp = tv;
}
- if (!convpath) {
+ if (!LUSECONVPATH(td)) {
error = kern_utimesat(td, dfd, args->filename, UIO_USERSPACE,
tvp, UIO_SYSSPACE);
} else {
- error = kern_utimesat(td, dfd, fname, UIO_SYSSPACE, tvp, UIO_SYSSPACE);
+ LCONVPATHEXIST_AT(td, args->filename, &fname, dfd);
+ error = kern_utimesat(td, dfd, fname, UIO_SYSSPACE,
+ tvp, UIO_SYSSPACE);
LFREEPATH(fname);
}
return (error);