From: [EMAIL PROTECTED] (Arnaldo Carvalho de Melo)
Date: Wed, 20 Jul 2005 20:22:28 -0300

> +     if (lopt->qlen != 0) {
> +             struct request_sock *req;
> +             int i;
> +
> +             for (i = 0; i < lopt->nr_table_entries; i++)
> +                     while ((req = lopt->syn_table[i]) != NULL) {
> +                             lopt->syn_table[i] = req->dl_next;
> +                             lopt->qlen--;
> +                             reqsk_free(req);
> +                     }
> +             }

Please fix the tabbing of the closing braces.

In fact, put an openning brace after the for() statement,
then add the necessary closing brace at the proper
tabbing level to close the top-level if() basic block.

I'll hold on both patches until you fix this up, thanks.
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to