| 5389 | |
| 5390 | #ifdef INET |
| 5391 | static const char * |
| 5392 | sppp_dotted_quad(u_long addr) |
| 5393 | { |
| 5394 | static char s[16]; |
| 5395 | sprintf(s, "%d.%d.%d.%d", |
| 5396 | (int)((addr >> 24) & 0xff), |
| 5397 | (int)((addr >> 16) & 0xff), |
| 5398 | (int)((addr >> 8) & 0xff), |
| 5399 | (int)(addr & 0xff)); |
| 5400 | return s; |
| 5401 | } |
| 5402 | #endif |
| 5403 | |
| 5404 | static int |
no test coverage detected