* Stop fragment queue timer */
| 2637 | * Stop fragment queue timer |
| 2638 | */ |
| 2639 | static void |
| 2640 | ng_ppp_stop_frag_timer(node_p node) |
| 2641 | { |
| 2642 | const priv_p priv = NG_NODE_PRIVATE(node); |
| 2643 | |
| 2644 | if (callout_pending(&priv->fragTimer)) |
| 2645 | ng_uncallout(&priv->fragTimer, node); |
| 2646 | } |
no test coverage detected