Skip to content

Commit

Permalink
Remove obsolete TODO for utime
Browse files Browse the repository at this point in the history
  • Loading branch information
tbodt committed Dec 30, 2019
1 parent dbc7728 commit 7442f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ static dword_t sys_utime_common(fd_t at_f, addr_t path_addr, struct timespec ati
return _EBADF;

bool follow_links = flags & AT_SYMLINK_NOFOLLOW_ ? false : true;
return generic_utime(at, path_addr != 0 ? path : ".", atime, mtime, follow_links); // TODO implement
return generic_utime(at, path_addr != 0 ? path : ".", atime, mtime, follow_links);
}

dword_t sys_utimensat(fd_t at_f, addr_t path_addr, addr_t times_addr, dword_t flags) {
Expand Down

0 comments on commit 7442f23

Please sign in to comment.