diff options
Diffstat (limited to 'libc/unistd/usershell.c')
-rw-r--r-- | libc/unistd/usershell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/unistd/usershell.c b/libc/unistd/usershell.c index 2e1f75d38..143dc2630 100644 --- a/libc/unistd/usershell.c +++ b/libc/unistd/usershell.c @@ -103,7 +103,7 @@ static char ** initshells(void) if ((fp = fopen(_PATH_SHELLS, "r")) == NULL) return (char **) validsh; - if (fstat(fileno(fp), &statb) == -1) { + if (__fstat(fileno(fp), &statb) == -1) { goto cleanup; } if ((strings = malloc((unsigned)statb.st_size + 1)) == NULL) { |