Reorder #if 0/#endif block to avoid splitting a basic block across the #if 0.
authorKp <kp@valhallalegends.com>
Fri, 4 Jul 2008 18:03:11 +0000 (13:03 -0500)
committerKp <kp@valhallalegends.com>
Mon, 1 Sep 2008 20:38:12 +0000 (15:38 -0500)
commite9dff3f0119c0f38cb2504037e6e7ce2665a5eee
treef851f4c6c51022489f64716ac79adab5eb235a77
parentad10dc073b3684e02f5fa14449463c1122bd4cb2
Reorder #if 0/#endif block to avoid splitting a basic block across the #if 0.

The bracing convention caused a #if 0/#endif to exclude the close of one
block and the open of another.  This compiled correctly, but confused
other tools that expect to see a block fully present or fully absent.
Move the ending brace of the preceding block out of the #if 0 and the
ending brace of the excluded block into the #if 0 to fix that.
apps/silcd/server.c