Navigation Menu

Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
fxlb committed Dec 17, 2014
1 parent 6fe428b commit df75779
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion print-cdp.c
Expand Up @@ -171,7 +171,7 @@ cdp_print(netdissect_options *ndo,
for (i=0;i<len;i++) {
j = *(tptr+i);
ND_PRINT((ndo, "%c", j));
if (j == 0x0a) /* lets rework the version string to get a nice identation */
if (j == 0x0a) /* lets rework the version string to get a nice indentation */
ND_PRINT((ndo, "\t "));
}
break;
Expand Down
2 changes: 1 addition & 1 deletion print-rpki-rtr.c
Expand Up @@ -120,7 +120,7 @@ static const struct tok rpki_rtr_error_codes[] = {
};

/*
* Build a identation string for a given identation level.
* Build a indentation string for a given indentation level.
* XXX this should be really in util.c
*/
static char *
Expand Down
2 changes: 1 addition & 1 deletion tcpdump.c
Expand Up @@ -2429,7 +2429,7 @@ print_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *sp)
static void
ndo_default_print(netdissect_options *ndo, const u_char *bp, u_int length)
{
hex_and_ascii_print(ndo, "\n\t", bp, length); /* pass on lf and identation string */
hex_and_ascii_print(ndo, "\n\t", bp, length); /* pass on lf and indentation string */
}

void
Expand Down

0 comments on commit df75779

Please sign in to comment.