Sync usage with man page.
[netbsd-mini2440.git] / dist / ipf / lib / printip.c
blob0a6753b757995f895a901d274a309c56ffebdce0
1 /* $NetBSD$ */
3 /*
4 * Copyright (C) 2002-2005 by Darren Reed.
6 * See the IPFILTER.LICENCE file for details on licencing.
8 * Id: printip.c,v 1.3.4.1 2006/06/16 17:21:12 darrenr Exp
9 */
11 #include "ipf.h"
14 void printip(addr)
15 u_32_t *addr;
17 struct in_addr ipa;
19 ipa.s_addr = *addr;
20 if (ntohl(ipa.s_addr) < 256)
21 printf("%lu", (u_long)ntohl(ipa.s_addr));
22 else
23 printf("%s", inet_ntoa(ipa));