diff options
author | itojun <itojun> | 2000-10-03 02:19:04 +0000 |
---|---|---|
committer | itojun <itojun> | 2000-10-03 02:19:04 +0000 |
commit | 64b4695379923685260c4d6fe6a1034878d94e84 (patch) | |
tree | 605230dbb213aea71a4190e8afd35615631bc85a /print-ipcomp.c | |
parent | bbb665b76f4e7462ff99f69853dbb1c8c960ea20 (diff) | |
download | tcpdump-64b4695379923685260c4d6fe6a1034878d94e84.tar.gz |
typo in comment. from jinmei@kame.net
Diffstat (limited to 'print-ipcomp.c')
-rw-r--r-- | print-ipcomp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-ipcomp.c b/print-ipcomp.c index 90ac50b4..39739311 100644 --- a/print-ipcomp.c +++ b/print-ipcomp.c @@ -21,7 +21,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.9 2000-09-29 04:58:41 guy Exp $"; + "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.10 2000-10-03 02:19:06 itojun Exp $"; #endif #ifdef HAVE_CONFIG_H @@ -70,7 +70,7 @@ ipcomp_print(register const u_char *bp, register const u_char *bp2, int *nhdr) ipcomp = (struct ipcomp *)bp; cpi = (u_int16_t)ntohs(ipcomp->comp_cpi); - /* 'ep' points to the end of avaible data. */ + /* 'ep' points to the end of available data. */ ep = snapend; if ((u_char *)(ipcomp + 1) >= ep - sizeof(struct ipcomp)) { |