| 41 | } |
| 42 | |
| 43 | static inline int |
| 44 | to_wire_mode(mode_t mode) |
| 45 | { |
| 46 | #ifdef SUPPORT_LINKS |
| 47 | #if _S_IFLNK != 0120000 |
| 48 | if (S_ISLNK(mode)) |
| 49 | return (mode & ~(_S_IFMT)) | 0120000; |
| 50 | #endif |
| 51 | #endif |
| 52 | return mode; |
| 53 | } |
| 54 | |
| 55 | static inline mode_t |
| 56 | from_wire_mode(int mode) |
no outgoing calls
no test coverage detected