Changeset 2648 in kBuild for trunk/src/kash/redir.c
- Timestamp:
- Sep 9, 2012 3:22:30 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/redir.c
r2424 r2648 144 144 default: 145 145 INTON; 146 error(psh, "%d: %s", fd, s trerror(errno));146 error(psh, "%d: %s", fd, sh_strerror(psh, errno)); 147 147 /* NOTREACHED */ 148 148 } … … 377 377 if (errno == EMFILE) 378 378 return EMPTY; 379 error(psh, "%d: %s", from, s trerror(errno));379 error(psh, "%d: %s", from, sh_strerror(psh, errno)); 380 380 } 381 381 return newfd; … … 398 398 if (errno == EMFILE) 399 399 return EMPTY; 400 error(psh, "%d: %s", from, s trerror(errno));400 error(psh, "%d: %s", from, sh_strerror(psh, errno)); 401 401 } 402 402 return newfd; … … 419 419 if (errno == EMFILE) 420 420 return EMPTY; 421 error(psh, "%d: %s", from, s trerror(errno));421 error(psh, "%d: %s", from, sh_strerror(psh, errno)); 422 422 } 423 423 return newfd;
Note:
See TracChangeset
for help on using the changeset viewer.