FC Updates from BitShares and myself #21

Closed
nathanielhourt wants to merge 687 commits from dapp-support into latest-fc
Showing only changes of commit 30ea9b4a1d - Show all commits

View file

@ -244,7 +244,7 @@ static int interruptible_getc(void)
if( r == -1 && errno == EINTR )
cli_quitting = true;
return r == 1 ? c : EOF;
return r == 1 && !cli_quitting ? c : EOF;
}
void cli::start()