From: Andre Noll Date: Sun, 8 Sep 2013 04:37:30 +0000 (+0000) Subject: net: makesock(): Combine code for passive sockets. X-Git-Tag: v0.5.2~11^2~7 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=88bdd8c140222998d4ec31812cbf8ef108baa910;hp=88bdd8c140222998d4ec31812cbf8ef108baa910 net: makesock(): Combine code for passive sockets. Make use of the fact that if (a && b) foo; if (a) bar; else baz; is equivalent to if (a) { if (b) foo; bar; } else baz; but the second form is easier to read, IMHO. ---