o Fix style(9) bugs introduced in the last commit.

Pointed out by:	bde
This commit is contained in:
Maxim Konovalov 2007-05-09 11:39:46 +00:00
parent 997ede1de7
commit d30d90dc80
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169417
2 changed files with 6 additions and 6 deletions

View File

@ -780,11 +780,11 @@ tcp_input(struct mbuf *m, int off0)
#ifdef TCPDEBUG
if (so->so_options & SO_DEBUG) {
ostate = tp->t_state;
if (isipv6) {
#ifdef INET6
if (isipv6)
bcopy((char *)ip6, (char *)tcp_saveipgen, sizeof(*ip6));
else
#endif /* INET6 */
#endif
} else
bcopy((char *)ip, (char *)tcp_saveipgen, sizeof(*ip));
tcp_savetcp = *th;
}

View File

@ -780,11 +780,11 @@ tcp_input(struct mbuf *m, int off0)
#ifdef TCPDEBUG
if (so->so_options & SO_DEBUG) {
ostate = tp->t_state;
if (isipv6) {
#ifdef INET6
if (isipv6)
bcopy((char *)ip6, (char *)tcp_saveipgen, sizeof(*ip6));
else
#endif /* INET6 */
#endif
} else
bcopy((char *)ip, (char *)tcp_saveipgen, sizeof(*ip));
tcp_savetcp = *th;
}