Changeset 1207 for trunk/src/kash/miscbltin.c
- Timestamp:
- Oct 7, 2007, 7:09:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/miscbltin.c
r1204 r1207 129 129 STARTSTACKSTR(psh, p); 130 130 for (;;) { 131 if ( read(0, &c, 1) != 1) {131 if (shfile_read(&psh->fdtab, 0, &c, 1) != 1) { 132 132 status = 1; 133 133 break; … … 136 136 continue; 137 137 if (c == '\\' && !rflag) { 138 if ( read(0, &c, 1) != 1) {138 if (shfile_read(&psh->fdtab, 0, &c, 1) != 1) { 139 139 status = 1; 140 140 break;
Note:
See TracChangeset
for help on using the changeset viewer.