From a27598cdb28fd747f991e6e6e35f8b197a9cd29b Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Fri, 3 Dec 2010 17:09:01 -0800 Subject: [PATCH] vswitchd: Correct indentation in bridge. The "bond_unixctl_hash" function was using tabs instead of spaces. --- vswitchd/bridge.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 9916414d..64fa0f0f 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 -- 2.30.2