Description of problem: These lines in src/spicelib/analysis/dctran.c broke ngspice in server mode since they write on stdout at the same time than the function src/frontend/outitf.c:OUTpData that write the output in binary mode: #ifdef NDEV /* show a time process indicator, by Gong Ding, gdiso */ if(ckt->CKTtime/ckt->CKTfinalTime*100<10.0) printf("%%%3.2lf\b\b\b\b\b",ckt->CKTtime/ckt->CKTfinalTime*100); else if(ckt->CKTtime/ckt->CKTfinalTime*100<100.0) printf("%%%4.2lf\b\b\b\b\b\b",ckt->CKTtime/ckt->CKTfinalTime*100); else printf("%%%5.2lf\b\b\b\b\b\b\b",ckt->CKTtime/ckt->CKTfinalTime*100); fflush(stdout); #endif The serialised double array is thus spoiled by many "%xx.xx\b\b\b\n". They are only included if we enable ndev. I suggest to remove these lines by applying a patch.
ngspice-25 is also affected by this bug.
Fedora 18 changed to end-of-life (EOL) status on 2014-01-14. Fedora 18 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug. If you can reproduce this bug against a currently maintained version of Fedora please feel free to reopen this bug against that version. If you are unable to reopen this bug, please file a new report against the current release. If you experience problems, please add a comment to this bug. Thank you for reporting this bug and we are sorry it could not be fixed.