UPnP: Minor coding style cleanup
authorJouni Malinen <jouni.malinen@atheros.com>
Tue, 3 Feb 2009 11:25:49 +0000 (13:25 +0200)
committerJouni Malinen <j@w1.fi>
Tue, 3 Feb 2009 11:25:49 +0000 (13:25 +0200)
src/wps/wps_upnp.c
src/wps/wps_upnp_event.c
src/wps/wps_upnp_ssdp.c
src/wps/wps_upnp_web.c

index bebecc2..5fdd27d 100644 (file)
@@ -567,9 +567,8 @@ void subscription_unlink(struct subscription *s)
                /* only one? */
                sm->subscriptions = NULL;
        } else  {
-               if (sm->subscriptions == s) {
+               if (sm->subscriptions == s)
                        sm->subscriptions = s->next;
-               }
                s->next->prev = s->prev;
                s->prev->next = s->next;
        }
@@ -856,7 +855,8 @@ static int get_netif_info(const char *net_if, unsigned *ip_addr,
        if (*ip_addr_text == NULL || *mac_addr_text == NULL)
                goto fail;
 
-       if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
+       sock = socket(AF_INET, SOCK_DGRAM, 0);
+       if (sock < 0)
                goto fail;
 
        os_strncpy(req.ifr_name, net_if, sizeof(req.ifr_name));
index 7e7ce88..12e16f4 100644 (file)
@@ -400,8 +400,7 @@ static int event_send_start(struct subscription *s)
         */
        if (connect(e->sd, (struct sockaddr *) &e->addr->saddr,
                    sizeof(e->addr->saddr))) {
-               if (errno == EINPROGRESS) {
-               } else {
+               if (errno != EINPROGRESS) {
                        event_retry(e, 1);
                        return -1;
                }
@@ -432,7 +431,8 @@ void event_send_all_later_handler(void *eloop_data, void *user_ctx)
        int nerrors = 0;
 
        sm->event_send_all_queued = 0;
-       if ((s = sm->subscriptions) == NULL)
+       s = sm->subscriptions;
+       if (s == NULL)
                return;
        do {
                if (s->addr_list == NULL) {
index 71dcc96..6a94c59 100644 (file)
@@ -51,7 +51,7 @@ static int token_eq(const char *s1, const char *s2)
                if (end1 || end2 || c1 != c2)
                        break;
        }
-       return (end1 && end2);  /* reached end of both words? */
+       return end1 && end2; /* reached end of both words? */
 }
 
 
@@ -359,10 +359,9 @@ void msearchreply_state_machine_stop(struct advertisement_state_machine *a)
        wpa_printf(MSG_DEBUG, "WPS UPnP: M-SEARCH stop");
        if (a->next == a) {
                sm->msearch_replies = NULL;
-       } else  {
-               if (sm->msearch_replies == a) {
+       } else {
+               if (sm->msearch_replies == a)
                        sm->msearch_replies = a->next;
-               }
                a->next->prev = a->prev;
                a->prev->next = a->next;
        }
index 2e0f296..c2043a5 100644 (file)
@@ -253,7 +253,7 @@ upnp_get_first_document_item(char *doc, const char *item, char **value)
                if (!os_strncasecmp(tagname, match, match_len) &&
                    *tag != '/' &&
                    (tagname[match_len] == '>' ||
-                    !isgraph(tagname[match_len]) )) {
+                    !isgraph(tagname[match_len]))) {
                        break;
                }
        }