Deleted Added
full compact
inet_ntoa.c (98937) inet_ntoa.c (106121)
1/*
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
1/*
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#include "config.h"
34#include "includes.h"
35
36#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
37
38#if defined(LIBC_SCCS) && !defined(lint)
35
36#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
37
38#if defined(LIBC_SCCS) && !defined(lint)
39static char rcsid[] = "$OpenBSD: inet_ntoa.c,v 1.2 1996/08/19 08:29:16 tholo Exp $";
39static char rcsid[] = "$OpenBSD: inet_ntoa.c,v 1.3 2002/06/27 10:14:01 itojun Exp $";
40#endif /* LIBC_SCCS and not lint */
41
42/*
43 * Convert network-format internet address
44 * to base 256 d.d.d.d representation.
45 */
46#include <sys/types.h>
47#include <netinet/in.h>

--- 4 unchanged lines hidden (view full) ---

52char *inet_ntoa(struct in_addr in)
53{
54 static char b[18];
55 register char *p;
56
57 p = (char *)&in;
58#define UC(b) (((int)b)&0xff)
59 (void)snprintf(b, sizeof(b),
40#endif /* LIBC_SCCS and not lint */
41
42/*
43 * Convert network-format internet address
44 * to base 256 d.d.d.d representation.
45 */
46#include <sys/types.h>
47#include <netinet/in.h>

--- 4 unchanged lines hidden (view full) ---

52char *inet_ntoa(struct in_addr in)
53{
54 static char b[18];
55 register char *p;
56
57 p = (char *)&in;
58#define UC(b) (((int)b)&0xff)
59 (void)snprintf(b, sizeof(b),
60 "%d.%d.%d.%d", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3]));
60 "%u.%u.%u.%u", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3]));
61 return (b);
62}
63
64#endif /* defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA) */
61 return (b);
62}
63
64#endif /* defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA) */