From: Ben Pfaff Date: Thu, 30 Apr 2009 21:00:06 +0000 (-0700) Subject: brcompatd: Fix formatting of /proc/net/vlan files. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c3a3d040abf0d66a7a24c354572d47e40683927;p=openvswitch brcompatd: Fix formatting of /proc/net/vlan files. The C source file that I copped this from originally didn't spell out the tab as \t, thus it was very difficult to see. Thanks for Justin for pointing this out. --- diff --git a/vswitchd/proc-net-compat.c b/vswitchd/proc-net-compat.c index a4f0f226..9b564785 100644 --- a/vswitchd/proc-net-compat.c +++ b/vswitchd/proc-net-compat.c @@ -308,7 +308,7 @@ set_vlan_proc_file(const struct compat_vlan *vlan) ds_init(&ds); ds_put_format( &ds, - "%s VID: %d REORDER_HDR: 1 dev->priv_flags: 81\n" + "%s VID: %d\t REORDER_HDR: 1 dev->priv_flags: 81\n" " total frames received 0\n" " total bytes received 0\n" " Broadcast/Multicast Rcvd 0\n"