cc422c4 Bug 700875 - (cov#10778) Cleanup ds_bring_up_server_install() in dsalib

Authored and Committed by nkinder 13 years ago
    Bug 700875 - (cov#10778) Cleanup ds_bring_up_server_install() in dsalib
    
    The ds_bring_up_server_install() function looks to have some cut/paste errors
    in it that throw off the intended logic.
    
    If XP_WIN32 is not defined, the else at line 256 is a part of the if at line
    246. If XP_WIN32 is defined, the else at line 256 is a part of the if at line
    227, which seems wrong.
    
    It also seems like the if statement at line 227 should be closed out after line
    237. The intent looks to be that we want to print the contents of statfile is
    the verbose option is set. The code beginning at line 239 seems unrelated to
    the verbose option, as it's setting the status that gets returned.
    
    This could be some sort of copy/paste area wince the if/else block beginning at
    line 207 seems the same as the if/else block starting at line 239.
    
        
file modified
+17 -30