| version 1.36, 2005/01/30 22:37:32 |
version 1.37, 2005/07/04 20:44:47 |
|
|
| */ |
*/ |
| if (lstat(resolved, &sb) == -1) { |
if (lstat(resolved, &sb) == -1) { |
| /* Allow nonexistent component if this is the last one. */ |
/* Allow nonexistent component if this is the last one. */ |
| if (*q == 0 && errno == ENOENT) { |
if ((*q == 0 || (*q == '/' && *(q + 1) == 0)) |
| |
&& errno == ENOENT) { |
| errno = serrno; |
errno = serrno; |
| return (resolved); |
return (resolved); |
| } |
} |
| return (NULL); |
return (NULL); |
| } |
} |
| |
if (*q == '/' && !S_ISDIR(sb.st_mode)) { |
| |
errno = ENOTDIR; |
| |
return (NULL); |
| |
} |
| if (S_ISLNK(sb.st_mode)) { |
if (S_ISLNK(sb.st_mode)) { |
| if (nlnk++ >= MAXSYMLINKS) { |
if (nlnk++ >= MAXSYMLINKS) { |
| errno = ELOOP; |
errno = ELOOP; |