diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1999-08-20 04:53:18 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1999-08-20 04:53:18 +0000 |
commit | e173150be06b304405efca86a1bdab9d2f71019e (patch) | |
tree | d3a4c03cc7c76384e84464e284c2912633519fc3 /sys/net | |
parent | 6e73c622286a7a8cb387a7fdbfb90ff26dd16a6e (diff) |
uninitialized variable; art@
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_bridge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_bridge.c b/sys/net/if_bridge.c index 03a6962cdc1..e102794dae4 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.c,v 1.14 1999/08/08 02:42:58 niklas Exp $ */ +/* $OpenBSD: if_bridge.c,v 1.15 1999/08/20 04:53:17 jason Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -466,7 +466,7 @@ bridge_bifconf(sc, bifc) struct ifbifconf *bifc; { struct bridge_iflist *p; - u_int32_t total, i; + u_int32_t total = 0, i; int error = 0; struct ifbreq breq; |