Removed secret printing in the shell

This commit is contained in:
Scott Haseley 2016-02-26 11:46:35 -05:00
parent 874a211af9
commit a5963a0e31
2 changed files with 2 additions and 2 deletions

View File

@ -534,7 +534,7 @@ interactive(void)
struct exitinfo ei; struct exitinfo ei;
while (1) { while (1) {
printsf("OS/161$ "); printf("OS/161$ ");
getcmd(buf, sizeof(buf)); getcmd(buf, sizeof(buf));
docommand(buf, &ei); docommand(buf, &ei);
printstatus(&ei, 0); printstatus(&ei, 0);

View File

@ -511,7 +511,7 @@ interactive(void)
struct exitinfo ei; struct exitinfo ei;
while (1) { while (1) {
printsf("OS/161$ "); printf("OS/161$ ");
getcmd(buf, sizeof(buf)); getcmd(buf, sizeof(buf));
docommand(buf, &ei); docommand(buf, &ei);
printstatus(&ei, 0); printstatus(&ei, 0);