| 465 | } |
| 466 | |
| 467 | static void |
| 468 | lomac_copy_auxsingle(struct mac_lomac *labelfrom, struct mac_lomac *labelto) |
| 469 | { |
| 470 | |
| 471 | KASSERT((labelfrom->ml_flags & MAC_LOMAC_FLAG_AUX) != 0, |
| 472 | ("lomac_copy_auxsingle: labelfrom not auxsingle")); |
| 473 | |
| 474 | labelto->ml_auxsingle = labelfrom->ml_auxsingle; |
| 475 | labelto->ml_flags |= MAC_LOMAC_FLAG_AUX; |
| 476 | } |
| 477 | |
| 478 | static void |
| 479 | lomac_copy(struct mac_lomac *source, struct mac_lomac *dest) |
no outgoing calls
no test coverage detected