diff options
author | shin <shin@FreeBSD.org> | 2000-01-13 15:27:50 +0000 |
---|---|---|
committer | shin <shin@FreeBSD.org> | 2000-01-13 15:27:50 +0000 |
commit | a74ce09d019b94fdf781071af7ee3a6cb89c5d56 (patch) | |
tree | 5ef32f88517c794c673bcc14b76a5aea56ec0890 | |
parent | 16085f42949d88bd0ba1801e6647b2c8777e30ba (diff) | |
download | FreeBSD-src-a74ce09d019b94fdf781071af7ee3a6cb89c5d56.zip FreeBSD-src-a74ce09d019b94fdf781071af7ee3a6cb89c5d56.tar.gz |
fix wrong name which is hidden by wrong ifdef.
Sorry for build failure. There was a mistake when I moved the patch
from my build check machine to commit machine.
Specified by: peter
-rw-r--r-- | sys/netinet6/in6_pcb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet6/in6_pcb.c b/sys/netinet6/in6_pcb.c index 383bb7f..e9f38d6 100644 --- a/sys/netinet6/in6_pcb.c +++ b/sys/netinet6/in6_pcb.c @@ -491,7 +491,7 @@ in6_pcbconnect(inp, nam, p) */ inp->in6p_flowinfo = sin6->sin6_flowinfo; if ((inp->in6p_flowinfo & IPV6_FLOWLABEL_MASK) == 0 && - ip6_auto_flowlable != 0) + ip6_auto_flowlabel != 0) inp->in6p_flowinfo |= (htonl(ip6_flow_seq++) & IPV6_FLOWLABEL_MASK); |