From: Andre Noll Date: Sun, 8 Sep 2013 05:16:46 +0000 (+0000) Subject: net: Reduce indentation level in makesock_addrinfo(). X-Git-Tag: v0.5.2~11^2~4 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=5775c2a87e53a8214be1a57c50cb3506166b4f83;hp=5775c2a87e53a8214be1a57c50cb3506166b4f83;p=paraslash.git net: Reduce indentation level in makesock_addrinfo(). Handle the active socket case of makesock_addrinfo() first, i.e. transform if (a) lots_of_stuff; else short; into if (!a) { short; continue; } lots_of_stuff; ---