diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-21 08:23:07 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-21 08:23:07 +0000 |
commit | 4f206260ca6b0dea002deeff501bc5170d94e9cd (patch) | |
tree | 823546694be2fbcb855836136aab2d682844ce29 | |
parent | 68874fd1c2a9f854ff278d134f9b2c4960f1a2fc (diff) |
Initialize variable.
-rw-r--r-- | sys/netinet/ip_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 5554630d20d..678a6ca1c04 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_output.c,v 1.58 1999/12/18 19:57:07 angelos Exp $ */ +/* $OpenBSD: ip_output.c,v 1.59 1999/12/21 08:23:06 angelos Exp $ */ /* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */ /* @@ -141,7 +141,7 @@ ip_output(m0, va_alist) struct sockaddr_encap *ddst, *gw; u_int8_t sa_require, sa_have = 0; struct tdb *tdb, *t; - int s, ip6flag; + int s, ip6flag = 0; #ifdef INET6 struct ip6_hdr *ip6; |