Explorar el Código

Merge pull request #639 from sevico/patch-3

typo
0xAX hace 6 años
padre
commit
16ce4f2c18
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 indicate a location in the filesystem tree;
 * to perform operations that act purely at the file descriptor level.
 * 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
 ```C
 op->open_flag = flags;
 op->open_flag = flags;