| 156 | #if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ |
| 157 | defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) |
| 158 | void |
| 159 | ipcperm_old2new(struct ipc_perm_old *old, struct ipc_perm *new) |
| 160 | { |
| 161 | |
| 162 | new->cuid = old->cuid; |
| 163 | new->cgid = old->cgid; |
| 164 | new->uid = old->uid; |
| 165 | new->gid = old->gid; |
| 166 | new->mode = old->mode; |
| 167 | new->seq = old->seq; |
| 168 | new->key = old->key; |
| 169 | } |
| 170 | |
| 171 | void |
| 172 | ipcperm_new2old(struct ipc_perm *new, struct ipc_perm_old *old) |
no outgoing calls
no test coverage detected