flag fields are u_int's
[unix-history] / usr / src / lib / libc / net / inet_ntoa.c
index 82693ed..41fb0db 100644 (file)
@@ -2,16 +2,11 @@
  * Copyright (c) 1983 Regents of the University of California.
  * All rights reserved.
  *
  * Copyright (c) 1983 Regents of the University of California.
  * All rights reserved.
  *
- * Redistribution and use in source and binary forms are permitted
- * provided that this notice is preserved and that due credit is given
- * to the University of California at Berkeley. The name of the University
- * may not be used to endorse or promote products derived from this
- * software without specific prior written permission. This software
- * is provided ``as is'' without express or implied warranty.
+ * %sccs.include.redist.c%
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)inet_ntoa.c        5.3 (Berkeley) %G%";
+static char sccsid[] = "@(#)inet_ntoa.c        5.6 (Berkeley) %G%";
 #endif /* LIBC_SCCS and not lint */
 
 /*
 #endif /* LIBC_SCCS and not lint */
 
 /*
@@ -20,6 +15,8 @@ static char sccsid[] = "@(#)inet_ntoa.c       5.3 (Berkeley) %G%";
  */
 #include <sys/types.h>
 #include <netinet/in.h>
  */
 #include <sys/types.h>
 #include <netinet/in.h>
+#include <arpa/inet.h>
+#include <stdio.h>
 
 char *
 inet_ntoa(in)
 
 char *
 inet_ntoa(in)
@@ -30,6 +27,7 @@ inet_ntoa(in)
 
        p = (char *)&in;
 #define        UC(b)   (((int)b)&0xff)
 
        p = (char *)&in;
 #define        UC(b)   (((int)b)&0xff)
-       sprintf(b, "%d.%d.%d.%d", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3]));
+       (void)snprintf(b, sizeof(b),
+           "%d.%d.%d.%d", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3]));
        return (b);
 }
        return (b);
 }