vswitchd: Correct indentation in bridge.
authorEthan Jackson <ethan@nicira.com>
Sat, 4 Dec 2010 01:09:01 +0000 (17:09 -0800)
committerEthan Jackson <ethan@nicira.com>
Mon, 6 Dec 2010 21:55:09 +0000 (13:55 -0800)
The "bond_unixctl_hash" function was using tabs instead of spaces.

vswitchd/bridge.c

index 9916414..64fa0f0 100644 (file)
@@ -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