diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-08 22:33:48 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-08 22:33:48 +0100 |
commit | d97eb114d5dd63f3f0d5b96d8f34a1613761793e (patch) | |
tree | 8de94f22010bd125e41893e97ab9d46376eda65d /sys/src/9/ip | |
parent | ba38aa8b9d6456d4d281a01a7565d59d546a4638 (diff) |
kernel/ip: fix typo (rfc -> ifc)
Diffstat (limited to 'sys/src/9/ip')
-rw-r--r-- | sys/src/9/ip/ip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/ip/ip.c b/sys/src/9/ip/ip.c index ef8a7e19c..32b95b4b6 100644 --- a/sys/src/9/ip/ip.c +++ b/sys/src/9/ip/ip.c @@ -402,7 +402,7 @@ ipiput4(Fs *f, Ipifc *ifc, Block *bp) } /* reassemble if the interface expects it */ -if(r->ifc == nil) panic("nil route rfc"); +if(r->ifc == nil) panic("nil route ifc"); if(r->ifc->reassemble){ frag = nhgets(h->frag); if(frag & ~IP_DF) { |