diff options
| author | Julian Elischer <julian@FreeBSD.org> | 2001-09-03 20:55:35 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 2001-09-03 20:55:35 +0000 |
| commit | 7dd66b4ad8e7b76b4bd4abc31bf73ab4ccb4fdd8 (patch) | |
| tree | 460dcb128855a8e2bc1cebe1e57eb033affe4911 /sys/netinet | |
| parent | 2e4f1ee934fcfe16e1c400e303ea8534dcba53f6 (diff) | |
Notes
Diffstat (limited to 'sys/netinet')
| -rw-r--r-- | sys/netinet/ip_encap.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/netinet/ip_encap.c b/sys/netinet/ip_encap.c index 2caeeacc863b..046f45b05ccb 100644 --- a/sys/netinet/ip_encap.c +++ b/sys/netinet/ip_encap.c @@ -214,8 +214,15 @@ encap4_input(m, va_alist) } /* for backward compatibility - messy... */ + /* XXX + * I THINK they meant to call ip_input() + * The original code called ipip_input() + * which just calls rip_input() + * which makes no sense. + * (It is also not compiled in in LINT) + */ if (proto == IPPROTO_IPV4) { - ipip_input(m, off); + ip_input(m, off); return; } |
