| 5402 | #endif |
| 5403 | |
| 5404 | static int |
| 5405 | sppp_strnlen(u_char *p, int max) |
| 5406 | { |
| 5407 | int len; |
| 5408 | |
| 5409 | for (len = 0; len < max && *p; ++p) |
| 5410 | ++len; |
| 5411 | return len; |
| 5412 | } |
| 5413 | |
| 5414 | /* a dummy, used to drop uninteresting events */ |
| 5415 | static void |
no outgoing calls
no test coverage detected