From: Ben Pfaff Date: Thu, 8 Jan 2009 21:39:56 +0000 (-0800) Subject: vswitchd: Fix inaccurate comment. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=701ac082f705bc94c18a1dc79974252f0f6fbc7d;p=openvswitch vswitchd: Fix inaccurate comment. Thanks to Pete for pointing this out. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index e02290e8..8f6cc6e3 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -119,7 +119,7 @@ struct port { struct bridge *bridge; size_t port_idx; int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */ - unsigned long *trunks; /* Trunked VLANs, if 'vlan' == 0. */ + unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1. */ const char *name; /* An ordinary bridge port has 1 interface.