Stuart Henderson <s...@spacehopper.org> writes:

> +/* dump the text from the buffer */
> +void
> +default_print_ascii(const u_char *cp, unsigned int length, unsigned int 
> offset)
> +{
> +     int c, i;
> +
> +     printf("\n");
> +     for (i = 0; i < length; i++) {
> +             c = cp[i];
> +             c = isprint(c) || isspace(c) ? c : '.';
> +             putchar(c);
> +     }
> +}
> +

Is not using the offset argument intentional?

- Mike Small

Reply via email to