From: Ethan Jackson Date: Sat, 4 Dec 2010 01:09:01 +0000 (-0800) Subject: vswitchd: Correct indentation in bridge. X-Git-Tag: v1.1.0~740 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a27598cdb28fd747f991e6e6e35f8b197a9cd29b;p=sliver-openvswitch.git vswitchd: Correct indentation in bridge. The "bond_unixctl_hash" function was using tabs instead of spaces. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 9916414db..64fa0f0f9 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -3417,20 +3417,20 @@ static void bond_unixctl_hash(struct unixctl_conn *conn, const char *args, void *aux OVS_UNUSED) { - uint8_t mac[ETH_ADDR_LEN]; - uint8_t hash; - char *hash_cstr; - - if (sscanf(args, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac)) - == ETH_ADDR_SCAN_COUNT) { - hash = bond_hash(mac); - - hash_cstr = xasprintf("%u", hash); - unixctl_command_reply(conn, 200, hash_cstr); - free(hash_cstr); - } else { - unixctl_command_reply(conn, 501, "invalid mac"); - } + uint8_t mac[ETH_ADDR_LEN]; + uint8_t hash; + char *hash_cstr; + + if (sscanf(args, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac)) + == ETH_ADDR_SCAN_COUNT) { + hash = bond_hash(mac); + + hash_cstr = xasprintf("%u", hash); + unixctl_command_reply(conn, 200, hash_cstr); + free(hash_cstr); + } else { + unixctl_command_reply(conn, 501, "invalid mac"); + } } static void