networking/interface.c: fix indentation
authorDenis Vlasenko <vda.linux@googlemail.com>
Wed, 4 Jun 2008 07:59:51 +0000 (07:59 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Wed, 4 Jun 2008 07:59:51 +0000 (07:59 -0000)
include/libbb.h
networking/ifconfig.c
networking/interface.c

index c79cd8b205f79dd87cb0fae1dc348e5b6097085a..492a561a922b6bfeb1576452872b777f13b1625e 100644 (file)
@@ -934,6 +934,8 @@ extern smallint interface_opt_a;
 int display_interfaces(char *ifname);
 #if ENABLE_FEATURE_HWIB
 int in_ib(const char *bufp, struct sockaddr *sap);
+#else
+#define in_ib(a, b) 1 /* fail */
 #endif
 const struct aftype *get_aftype(const char *name);
 const struct hwtype *get_hwtype(const char *name);
index 965fca344cd764a6280fd414cd5ec711e02e378f..e999741d12d46f37d89e242f7ee2d4f0cd1dafb8 100644 (file)
@@ -252,20 +252,13 @@ static const struct options OptArray[] = {
 /*
  * A couple of prototypes.
  */
-
 #if ENABLE_FEATURE_IFCONFIG_HW
 static int in_ether(const char *bufp, struct sockaddr *sap);
-# if ENABLE_FEATURE_HWIB
-extern int in_ib(const char *bufp, struct sockaddr *sap);
-# else
-#  define in_ib(a, b) 1 /* fail */
-# endif
 #endif
 
 /*
  * Our main function.
  */
-
 int ifconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int ifconfig_main(int argc, char **argv)
 {
@@ -436,8 +429,7 @@ int ifconfig_main(int argc, char **argv)
                                                        bb_show_usage();
                                                /*safe_strncpy(host, *argv, sizeof(host));*/
                                                host = *argv;
-                                               if (hw_class == 1 ? in_ether(host, &sa)
-                                                       : in_ib(host, &sa))
+                                               if (hw_class == 1 ? in_ether(host, &sa) : in_ib(host, &sa))
                                                        bb_error_msg_and_die("invalid hw-addr %s", host);
                                                p = (char *) &sa;
                                        }
index abd58b582f79098dbf9274182e4d1cbfca31b236..efae03bf31449db5f0a59a8c237ee91a60e68312 100644 (file)
@@ -680,7 +680,6 @@ static int if_fetch(struct interface *ife)
        return 0;
 }
 
-
 static int do_if_fetch(struct interface *ife)
 {
        if (if_fetch(ife) < 0) {
@@ -1217,63 +1216,62 @@ static int if_print(char *ifname)
 /* Input an Infiniband address and convert to binary. */
 int in_ib(const char *bufp, struct sockaddr *sap)
 {
-    unsigned char *ptr;
-    char c;
-    const char *orig;
-    int i;
-    unsigned val;
-
-    sap->sa_family = ib_hwtype.type;
-    ptr = (unsigned char *) sap->sa_data;
-
-    i = 0;
-    orig = bufp;
-    while ((*bufp != '\0') && (i < INFINIBAND_ALEN)) {
-       val = 0;
-       c = *bufp++;
-       if (isdigit(c))
-           val = c - '0';
-       else if (c >= 'a' && c <= 'f')
-           val = c - 'a' + 10;
-       else if (c >= 'A' && c <= 'F')
-           val = c - 'A' + 10;
-       else {
-           errno = EINVAL;
-           return (-1);
-       }
-       val <<= 4;
-       c = *bufp;
-       if (isdigit(c))
-           val |= c - '0';
-       else if (c >= 'a' && c <= 'f')
-           val |= c - 'a' + 10;
-       else if (c >= 'A' && c <= 'F')
-           val |= c - 'A' + 10;
-       else if (c == ':' || c == 0)
-           val >>= 4;
-       else {
-           errno = EINVAL;
-           return (-1);
-       }
-       if (c != 0)
-           bufp++;
-       *ptr++ = (unsigned char) (val & 0377);
-       i++;
-
-       /* We might get a semicolon here - not required. */
-       if (*bufp == ':') {
-           bufp++;
+       unsigned char *ptr;
+       char c;
+       const char *orig;
+       int i;
+       unsigned val;
+
+       sap->sa_family = ib_hwtype.type;
+       ptr = (unsigned char *) sap->sa_data;
+
+       i = 0;
+       orig = bufp;
+       while ((*bufp != '\0') && (i < INFINIBAND_ALEN)) {
+               val = 0;
+               c = *bufp++;
+               if (isdigit(c))
+                       val = c - '0';
+               else if (c >= 'a' && c <= 'f')
+                       val = c - 'a' + 10;
+               else if (c >= 'A' && c <= 'F')
+                       val = c - 'A' + 10;
+               else {
+                       errno = EINVAL;
+                       return -1;
+               }
+               val <<= 4;
+               c = *bufp;
+               if (isdigit(c))
+                       val |= c - '0';
+               else if (c >= 'a' && c <= 'f')
+                       val |= c - 'a' + 10;
+               else if (c >= 'A' && c <= 'F')
+                       val |= c - 'A' + 10;
+               else if (c == ':' || c == 0)
+                       val >>= 4;
+               else {
+                       errno = EINVAL;
+                       return -1;
+               }
+               if (c != 0)
+                       bufp++;
+               *ptr++ = (unsigned char) (val & 0377);
+               i++;
+
+               /* We might get a semicolon here - not required. */
+               if (*bufp == ':') {
+                       bufp++;
+               }
        }
-    }
 #ifdef DEBUG
-fprintf(stderr, "in_ib(%s): %s\n", orig, UNSPEC_print(sap->sa_data));
+       fprintf(stderr, "in_ib(%s): %s\n", orig, UNSPEC_print(sap->sa_data));
 #endif
-    return (0);
+       return 0;
 }
 #endif
 
 
-
 int display_interfaces(char *ifname)
 {
        int status;