Weikang Shi пре 6 година
родитељ
комит
b7e625efdd
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      SysCall/linux-syscall-5.md

+ 1 - 1
SysCall/linux-syscall-5.md

@@ -250,7 +250,7 @@ If we didn't pass `O_TMPFILE` for creation of a temporary file, we check the `O_
 * to indicate a location in the filesystem tree;
 * to perform operations that act purely at the file descriptor level.
 
-So, in this case the file itself is not opened, but operations like `dup`, `fcntl` and other can be used. So, if all file content related operations like `read`, `write` and other are permitted, only `O_DIRECTORY | O_NOFOLLOW | O_PATH` flags can be used. We have finished with flags for this moment in the `build_open_flags` for this moment and we may fill our `open_flags->open_flag` with them:
+So, in this case the file itself is not opened, but operations like `dup`, `fcntl` and other can be used. So, if all file content related operations like `read`, `write` and other are not permitted, only `O_DIRECTORY | O_NOFOLLOW | O_PATH` flags can be used. We have finished with flags for this moment in the `build_open_flags` for this moment and we may fill our `open_flags->open_flag` with them:
 
 ```C
 op->open_flag = flags;