From 0d923d9705d89c78190dea017ccbab37e5724fce Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 1 Jul 2010 17:47:48 +0000 Subject: 2010-07-01 Joel Sherrill * libcsupport/src/_rename_r.c, libcsupport/src/getdents.c, libcsupport/src/unlink.c, libcsupport/src/utime.c, libcsupport/src/writev.c: Remove remaining checks for missing handlers. --- cpukit/libcsupport/src/utime.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'cpukit/libcsupport/src/utime.c') diff --git a/cpukit/libcsupport/src/utime.c b/cpukit/libcsupport/src/utime.c index b6f1954dae..25bcb0761b 100644 --- a/cpukit/libcsupport/src/utime.c +++ b/cpukit/libcsupport/src/utime.c @@ -34,11 +34,6 @@ int utime( if ( rtems_filesystem_evaluate_path( path, strlen( path ), 0x00, &temp_loc, true ) ) return -1; - if ( !temp_loc.ops->utime_h ){ - rtems_filesystem_freenode( &temp_loc ); - rtems_set_errno_and_return_minus_one( ENOTSUP ); - } - if ( times == NULL ) { now.actime = now.modtime = time( NULL ); times = &now; -- cgit v1.2.3