summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/futimens.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/futimens.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 'cpukit/libcsupport/src/futimens.c')
-rw-r--r--cpukit/libcsupport/src/futimens.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/futimens.c b/cpukit/libcsupport/src/futimens.c
index f82c78282f..151e7a168d 100644
--- a/cpukit/libcsupport/src/futimens.c
+++ b/cpukit/libcsupport/src/futimens.c
@@ -76,7 +76,7 @@ int futimens(
return rv;
}
- rv = (*currentloc->mt_entry->ops->utime_h)(
+ rv = (*currentloc->mt_entry->ops->utimens_h)(
currentloc,
new_times
);