]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-ascii.c
Add [email protected] for print-nfs.c patch
[tcpdump] / print-ascii.c
index 6a6b845a95f9428b6b947f44891953fdbe61561d..c8f65fd3fb4f51f42baae23d20c4b680e14d1c0b 100644 (file)
 #include "config.h"
 #endif
 
-#include <sys/cdefs.h>
-#if 0
 #ifndef lint
-__RCSID("$NetBSD: print-ascii.c,v 1.1 1999/09/30 14:49:12 sjg Exp $");
-#endif
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/print-ascii.c,v 1.6 2000-01-29 16:47:46 itojun Exp $";
 #endif
 #include <stdio.h>
 #include <sys/types.h>
@@ -74,7 +72,8 @@ ascii_print_with_offset(register const u_char *cp, register u_int length,
        while (--nshorts >= 0) {
                s1 = *cp++;
                s2 = *cp++;
-               (void)sprintf(hsp, " %02x%02x", s1, s2);
+               (void)snprintf(hsp, sizeof(hexstuff) - (hsp - hexstuff),
+                   " %02x%02x", s1, s2);
                hsp += HEXDUMP_HEXSTUFF_PER_SHORT;
                *(asp++) = (isgraph(s1) ? s1 : '.');
                *(asp++) = (isgraph(s2) ? s2 : '.');
@@ -89,7 +88,8 @@ ascii_print_with_offset(register const u_char *cp, register u_int length,
        }
        if (length & 1) {
                s1 = *cp++;
-               (void)sprintf(hsp, " %02x", s1);
+               (void)snprintf(hsp, sizeof(hexstuff) - (hsp - hexstuff),
+                   " %02x", s1);
                hsp += 3;
                *(asp++) = (isgraph(s1) ? s1 : '.');
                ++i;