summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/utimensat.c
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-04-30 13:14:48 -0400
committerJoel Sherrill <joel@rtems.org>2021-05-28 14:27:40 -0500
commitea41722c92313e884368106832d3454114ba88b3 (patch)
tree9e7145c88aec146e45a2b6f8040f8767b56629f9 /cpukit/libcsupport/src/utimensat.c
parentpsx13: Added tests for utimensat() and futimens() (diff)
downloadrtems-ea41722c92313e884368106832d3454114ba88b3.tar.bz2
Change filesystem utime_h handler to utimens_h
Also updated licenses. Closes #4400 Updates #3899
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/utimensat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/utimensat.c b/cpukit/libcsupport/src/utimensat.c
index 3e91b65aae..c053218ad0 100644
--- a/cpukit/libcsupport/src/utimensat.c
+++ b/cpukit/libcsupport/src/utimensat.c
@@ -214,7 +214,7 @@ int utimensat(
return rv;
}
- rv = (*currentloc->mt_entry->ops->utime_h)(
+ rv = (*currentloc->mt_entry->ops->utimens_h)(
currentloc,
new_times
);